I'll start by freely saying that I've never programmed in Qt before in my life.
However, I'm working with some people that created a Qt program using some
flavor of Linux that they want me to port over to OS X. Sounds easy enough,
but when I go to compile, I get the following:
vector.h:108: error: conflicting types for `typedef class Vector Point'
/usr/local/qt/include/qwindowdefs.h:109: error: previous declaration as `
typedef struct Point Point'
Going to qwindowdefs.h, I find:
typedef struct Point Point;
[...]
Witht that out of the way, what do you guys suggest I do about this, and what
additional information might you need?