Leonetienne/Hazelnupp
Simple, easy to use, command line parameter interface
Value.cpp
Go to the documentation of this file.
1 #include "Value.h"
2 
3 using namespace Hazelnp;
4 
6  :
7  type{ type }
8 {
9  return;
10 }
11 
13 {
14  return type;
15 }
Hazelnp
Definition: CmdArgsInterface.h:9
Hazelnp::Value::Value
Value(DATA_TYPE type)
Definition: Value.cpp:5
Hazelnp::Value::GetDataType
DATA_TYPE GetDataType() const
Will return the data type of this value.
Definition: Value.cpp:12
Hazelnp::DATA_TYPE
DATA_TYPE
The different data types a paramater can be.
Definition: DataType.h:8
Hazelnp::Value::type
DATA_TYPE type
Definition: Value.h:48
Value.h