TDME2 1.9.121
GUINode_AlignmentHorizontal.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
12
13GUINode_AlignmentHorizontal::GUINode_AlignmentHorizontal(const string& name, int ordinal)
14 : Enum(name, ordinal)
15{
16}
17
22
24{
25 if (NONE->getName() == name) return NONE;
26 if (LEFT->getName() == name) return LEFT;
27 if (CENTER->getName() == name) return CENTER;
28 if (RIGHT->getName() == name) return RIGHT;
29 // TODO: throw exception here maybe
30 return nullptr;
31}
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
static GUINode_AlignmentHorizontal * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * LEFT
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * NONE
Enum base class.
Definition: Enum.h:14
const string & getName() const
Definition: Enum.h:30