#ifndef BASYX_SUBMODEL_ENUM_LevelType_H | |
#define BASYX_SUBMODEL_ENUM_LevelType_H | |
#include <string> | |
namespace basyx { | |
namespace submodel { | |
enum class LevelType { | |
Max, | |
Min, | |
Nom, | |
Typ, | |
}; | |
class LevelType_ | |
{ | |
public: | |
static LevelType from_string(const std::string & name); | |
static const char * to_string(LevelType value); | |
}; | |
} | |
} | |
#endif |