hi, how to declare static data memeber of a class and how to define it?
class Hop {
protected:
static struct NStrct{
int nCount;
}
}
how to implement it? for example if the static member is "static const count", you would declare the static member in implementation file like "int Hop::NStrct::nCount=0;"