Hello
Does anyone have a hint how to prevent ANSI C++ from destroying the following contruct while round trip:
template <class T>
class CMatrix:
public DMatrix<T>
{
public:
class Cursor:
public DMatrix<T>::Cursor
{
};
};
With Regards
Martin
