CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: again pointer

  1. #1
    Join Date
    Aug 1999
    Posts
    70

    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.


  2. #2
    Join Date
    Jun 1999
    Posts
    126

    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
  •  





Click Here to Expand Forum to Full Width

Featured