class C_Class
{
public:
struct _Get
{
void foo( void )
{
m_Var = 0;
}
}Get;
struct _Set
{
}Set;
long m_Var;
};
I like to organize my functions with get and set structures
Get.ThisThing();
Set.ThisThing();
But my structure's functions cant access the classes members unless I make a instance right off the bat and hard code it in.
Is there a way around this