Hi
I have a C typedef struct that I need to change to a C++ class.
typedefstruct structTag3DScene
{
p3DObjectGroup pObjGroupArray; /* array of grouped scene objects */
int numObjGroups; /* count of grouped scene objects */
}
f3DScene, /* 3D Scene */
* p3DScene; /* pointer to 3D scene */
So far I have
class structTag3DScene
{
private:
p3DObjectGroup pObjGroupArray; /* array of grouped scene objects */
int numObjGroups; /* count of grouped scene objects */
public:
}
Well that’s all I can do!
If I new what the last two lines of the original struct did i might be able to work it out.
Can anyone help?
Thanks!