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

Search:

Type: Posts; User: acppdummy

Search: Search took 0.03 seconds.

  1. Re: Access other members within same nested class?

    Yes in my particular situation I need a global list of certain objects of classA so a static member just fits the need. Thanks!
  2. Re: Access other members within same nested class?

    Thank you! I have changed the vector to a static member of classA instead.
  3. Re: Access other members within same nested class?

    Thank you for the quick reply! Yes I will have to redo the design.
  4. Access other members within same nested class?

    It's hard to give a precise title but here is the question in detail: I have a class, something like this:


    class classA{
    public:
    void fnA();
    ...
    };

    and another class that...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured