Click to See Complete Forum and Search --> : again pointer


tufail74
August 16th, 1999, 01:15 PM
Sir,
I am stuck.I donot know what to do.
Can you please tell me this
I have made a dialog box application.I want to add my class with this project and declare a pointer to my class in the dialog box class.My class/structure is like this
struct jobdef
{
CString user;
.
.
.
.
.
.
int seq;
struct jobdef *next;
};
Please tell me the steps I need to perform.

Timo Hahn
August 17th, 1999, 01:37 AM
try

// forward declaration
struct jobdef;

struct jobdef
{
CString user;
.
.
.
.
.
.
int seq;
struct jobdef *next;
};




Timo