CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: aryajur

Search: Search took 0.01 seconds.

  1. Re: Pointer to an array of pointers to a structure

    The above scheme worked nicely. The problem was initializing the string variables with NULL. I initialized them with empty strings "" and then it worked fine.
  2. Re: Pointer to an array of pointers to a structure

    I tried this out:



    class Obj
    {
    protected:
    struct A
    {
    int Index;
  3. Re: Pointer to an array of pointers to a structure

    Thanks for the reply. I need a const array that needs to be initialized in the derived class but it needs to be accessible from the function defined in the parent class. So how can I do this?
  4. [RESOLVED] Pointer to an array of pointers to a structure

    Hi,
    I have an abstract class like this:


    class Obj
    {
    public:
    virtual int someFunc()=0;
    protected:
    struct A
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured