OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
PyOpalObject.cpp
Go to the documentation of this file.
2
3namespace PyOpal {
4namespace PyOpalObjectNS {
5
6std::map<AttributeType, std::string> attributeName = std::map<AttributeType, std::string>({
7 {DOUBLE, "float"},
8 {STRING, "string"},
9 {PREDEFINED_STRING, "predefined string"},
10 {UPPER_CASE_STRING, "upper case string"},
11 {BOOL, "bool"},
12 {INT, "int"},
13 {FLOAT_LIST, "list of floats"}
14});
15} // PyOpalObjectNS
16} // PyOpal
std::map< AttributeType, std::string > attributeName
Definition: PyOpalObject.cpp:7