Hi!

I created a Point class like this:

namespace ProjectX {
namespace Drawing {

class Point{...};

};
};


When I declare Point with using namespace ProjectX:rawing, the compiler feel ambiguis with Gdiplus::Point and ProjectX:rawing::Point. I haven't include Gdiplus header...

How can I resolve that conflict?

Thanks,
Michel.