33 lines
730 B
C++
33 lines
730 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 FLOORPLAN_3D_WALLS_H
|
||
#define FLOORPLAN_3D_WALLS_H
|
||
|
||
#include "Obstacle3.h"
|
||
|
||
namespace Floorplan3D {
|
||
|
||
class Walls {
|
||
|
||
public:
|
||
|
||
virtual void clear() = 0;
|
||
|
||
virtual void add(const Floorplan::Floor* f, const Floorplan::FloorObstacleLine* fol, const Floorplan::FloorObstacleDoor* aboveDoor) = 0;
|
||
|
||
virtual const std::vector<Obstacle3D>& get() = 0;
|
||
|
||
};
|
||
|
||
}
|
||
|
||
#endif // FLOORPLAN_3D_WALLS_H
|