ADTF  3.18.2
property_type_definition< TYPE >

Concept template to define the Name and the conversion type for the given type TYPE. More...

Detailed Description

template<typename TYPE>
struct adtf::base::ant::property_type_definition< TYPE >

Concept template to define the Name and the conversion type for the given type TYPE.

This template is used within the container template property_value. Use a specialization of this template to define your own property User type:

template < >
struct property_type_definition<tMyType>
{
static constexpr const char* const TYPE_NAME = "tMyType";
typedef tMyTypeConversion con_type;
};
Template Parameters
TYPEvalue type for the property
See also
property_type_conversion

Definition at line 37 of file property_type_definitions.h.