camcom 1.0.3
 
Loading...
Searching...
No Matches
datatype.hpp
Go to the documentation of this file.
1
15
16#ifndef CAMCOM_COMMON_DATATYPE_HPP
17#define CAMCOM_COMMON_DATATYPE_HPP
18
19#include <string>
20
21#include <ifw/fnd/defs/dataType.hpp>
22
23namespace camcom::common {
24
27 using DataType = ifw::fnd::datatype::DataType;
28
31 inline std::string DataTypeString(DataType type) {
32 return ifw::fnd::datatype::GetDataTypeStr2(type);
33 }
34
35}
36
37#endif
Definition adapterBase.cpp:18
ifw::fnd::datatype::DataType DataType
Definition datatype.hpp:27
std::string DataTypeString(DataType type)
Definition datatype.hpp:31