Hi,
I have a question ... Is it right that I can "pre-define" a class (don't know the correct term) such as below?
class Test;
class Test {
Test();
funktion1();
funktion2();
};
Can I create a static object after I've "pre-defined"the class test (see below)?
class Test;
static Test * test;
class Test {
Test ();
function1 ();
function2 ();
};
and then initialize the object in the .ccp-file with
Test * Test::test = NULL;
??? Thanks for any help ...