четверг, 2 августа 2012 г.

Keil uVision v4.54 C++ Classes static variables

After define static variable in class, example:

class C
{
public:
   static bool Inited;
};


need to set it in .c file where this class will be used:

bool C::Inited = false;

But not in .h file where defined class.