Skynet
April 11th, 2008, 03:35 PM
Hi!
I created a Point class like this:
namespace ProjectX {
namespace Drawing {
class Point{...};
};
};
When I declare Point with using namespace ProjectX::Drawing, the compiler feel ambiguis with Gdiplus::Point and ProjectX::Drawing::Point. I haven't include Gdiplus header...
How can I resolve that conflict?
Thanks,
Michel.
I created a Point class like this:
namespace ProjectX {
namespace Drawing {
class Point{...};
};
};
When I declare Point with using namespace ProjectX::Drawing, the compiler feel ambiguis with Gdiplus::Point and ProjectX::Drawing::Point. I haven't include Gdiplus header...
How can I resolve that conflict?
Thanks,
Michel.