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