|
-
August 16th, 1999, 01:15 PM
#1
again pointer
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.
-
August 17th, 1999, 01:37 AM
#2
Re: again pointer
try
// forward declaration
struct jobdef;
struct jobdef
{
CString user;
.
.
.
.
.
.
int seq;
struct jobdef *next;
};
Timo
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|