22 lines
417 B
C++
22 lines
417 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2016, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
namespace jus {
|
|
class ParamType {
|
|
protected:
|
|
const char* m_typeName;
|
|
public:
|
|
ParamType(const char* _name = "");
|
|
const char* getName() const;
|
|
bool operator == (const ParamType& _obj) const;
|
|
};
|
|
|
|
|
|
template<class JUS_TYPE>
|
|
ParamType createType();
|
|
}
|
|
|