blob: 3357dd5cd234930cb2d67239f7634d41d82d8ceb [file] [log] [blame]
#ifndef BASYX_SUBMODEL_ENUM_IdentifierType_H
#define BASYX_SUBMODEL_ENUM_IdentifierType_H
#include <string>
namespace basyx {
namespace submodel {
enum class IdentifierType {
Custom,
IRDI,
URI,
Unknown,
};
class IdentifierType_
{
public:
static IdentifierType from_string(const std::string & name);
static const char * to_string(IdentifierType value);
};
}
}
#endif