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

Search:

Type: Posts; User: oliveman

Search: Search took 0.02 seconds.

  1. Re: Functions returning my user-defined class (w/pointer) don't like operator=.

    Here is a class which produces the errors. With this code:


    class myClass
    {
    public:
    myClass();
    int Read(int k);
    myClass(myClass & original);
    myClass & operator=(myClass & original);
  2. Functions returning my user-defined class (w/pointer) don't like operator=.

    I have a user-defined class containing several integers and a pointer (to an array of values in another user-defined class which does not contain a pointer, and which works fine and has no similar...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured