Compiler Error C2838 (Windows CE 5.0)

Send Feedback

'member' : illegal qualified name in member declaration

A class, structure, or union uses a fully qualified name to redeclare a member of another class, structure, or union.

The following example shows how this error might occur.

class Bellini
{
public:
    Norma();
};
class Bottesini
{
    Bellini::Norma();  // error

};

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.