using .NET 2003 and VAX 1246
in a .h i added:
namespace feline {
class test_colour
{
public:
const char *getColour() const;
void setColour(const char *colour);
protected:
char *m_pszColour;
};
}
and then into the matching cpp file i added:
feline::test_colour foo;
::feline::test_colour bar;
i have the class name coloured correctly on both lines.
i will try on .NET 2002 tonight when i get home.