29 lines
669 B
C
29 lines
669 B
C
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef IHASPOSITION3D_H
|
||
#define IHASPOSITION3D_H
|
||
|
||
//#include <Indoor/geo/Point3.h>
|
||
|
||
//class IHasPosition3D {
|
||
|
||
//public:
|
||
|
||
// /** set the element's 3D position */
|
||
// virtual void setPosition3D(const Point3& p) = 0;
|
||
|
||
// /** get the element's 3D position */
|
||
// virtual Point3 getPosition3D() const = 0;
|
||
|
||
//};
|
||
|
||
#endif // IHASPOSITION3D_H
|