Re: [osg-users] error C2065: 'Cube': undeclared identifier

2014-04-17 Thread Robert Osfield
Hi Lukas, There is no way for a 3rd Party to know what is amiss with your code with such scant details. What I can say is that with a compiler error like this it's entirely down to your own C++ code and really nothing to with the OSG. This is an OSG forum/mailing list, we can help you with OSG

[osg-users] error C2065: 'Cube': undeclared identifier

2014-02-25 Thread Lukas Koebler
Hi, the top of my programm is called Plugin. Till now I got to add a quadrangle: Code: //header: std::listQuadrangle * m_BoxList; void addBox(Quadrangle *box,bool setdefaultpos); //cpp: void Plugin::addBox(Quadrangle *box,bool setdefaultpos) { m_BoxList.push_back(box);