|
5 |
edited tags; edited title; edited tags
|
||
How to detect whether X(big X) or x(small x) there is a specific member variable in class?
|
||||
|
4 | added some details | ||
|
For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class or GDI+ PointF class or some others. All of them use different x in them. My solution could be reduces to the following code:
But it does not compile in Visual Studio, while compiling in the GNU C++. With Visual Studio I could use the following template:
But it does not compile in GNU C++. Is there universal solution? UPD: Structures P1 and P2 here are only for example. There are could be any classes with unknown members. |
||||
|
3 | added details; added 4 characters in body | ||
|
For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class or GDI+ PointF class or some others. All of them use different x in them. My solution could be reduces to the following code:
But it does not compile in Visual Studio, while compiling in the GNU C++. With Visual Studio I could use the following template:
But it does not compile in GNU C++. Is there universal solution? UPD: Structures P1 and P2 here are only for example. There are could be any classes with unknown members. |
||||
|
2 | added 1 characters in body; added 10 characters in body | ||
|
1 |
|
||
