Is it possible to implement static class member functions in *.cpp file instead of doing it in the header file ?
static
Are all static functions a
Try this:
header.hxx:
class CFoo { public: static bool IsThisThingOn(); };
class.cxx:
#include "header.hxx" bool CFoo::IsThisThingOn() // note: no static keyword here { return true; }