1 #ifndef __RTFX_PROPERTY_INCLUDES__
2 #define __RTFX_PROPERTY_INCLUDES__
20 RTFXAPI RTFXPropertyBasic<int> *
MakeIntProperty(
string _name,
string _description,
int _value );
21 RTFXAPI RTFXPropertyBasic<float> * MakeFloatProperty(
string _name,
string _description,
float _value );
22 RTFXAPI RTFXPropertyBasic<bool> * MakeBoolProperty(
string _name,
string _description,
bool _value );
23 RTFXAPI RTFXPropertyBasic<double> * MakeDoubleProperty(
string _name,
string _description,
double _value );
25 RTFXAPI RTFXPropertyArray<int> * MakeIntArrayProperty(
string _name,
string _description,
int * _value,
int _length );
26 RTFXAPI RTFXPropertyArray<float> * MakeFloatArrayProperty(
string _name,
string _description,
float * _value,
int _length );
27 RTFXAPI RTFXPropertyArray<bool> * MakeBoolArrayProperty(
string _name,
string _description,
bool * _value,
int _length );
28 RTFXAPI RTFXPropertyArray<double> * MakeDoubleArrayProperty(
string _name,
string _description,
double * _value,
int _length );
30 RTFXAPI RTFXPropertyString * MakeStringProperty(
string _name,
string _description,
string _value );