Hello again. I am stuck with this example:
#define Listof(Type) class Type##List \
{ \
public: \
Type##List(){} \
private: \
int itsLength; \
};
could anyone explain to me what is the intention and the point in this example? beacause I found this example in a book but not explained.