yea that part is static. so how should i define it? i wanna use it in my other classes that is why i made it static.
ur quote doesnt work also
i am sending that part of my code.
Code:
#ifndef STATE_H_
#define STATE_H_
#include <coemain.h>
enum EAnimationState
{
EASExecuting = 0 ,
EASStopped = 1
};
class state
{
public:
IMPORT_C state();
IMPORT_C state(TInt ST);
private:
~state();
public:
IMPORT_C static TInt GetState();
IMPORT_C static void SetState(TInt aStt);
private:
static EAnimationState::iMyStt;
};
#endif