I ... feel stupid asking about this, but I'm not sure how to solve the problem.
This is a small piece of code (Objective-C ++):
#include "eq/eq.h" namespace eqOther { class Window : public eq::Window
And the error I get is: Use of 'Window' is ambiguous , and it states that it is declared in Xh as typedef XID Window and in window.h as class eq::Window , which is its superclass.
The class I am declaring should be in namespace eqOther yes? eqOther::Window is different from eq::Window !?
I feel so stupid, but I just donβt see what I did wrong ...
source share