/* * © 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 EELEMENTPARAMS_H #define EELEMENTPARAMS_H #include #include static inline std::vector getDoorTypeStrings() { return { "unknown", "swing", "double swing", "slide", "double slide", "revolving" }; } static inline std::vector getMaterialStrings() { return { "Unknown", "Concrete", "Wood", "Drywall", "Glass", "Metal", "Glass (metallized)" }; } static inline std::vector getObstacleTypeStrings() { return { "unknown", "wall", "window", "handrail", "pillar", }; } static inline std::vector getOutlineMethodStrings() { return { "add", "remove" }; } #endif // EELEMENTPARAMS_H