#include <Property_T.h>


Public Member Functions | |
| TAO_Notify_Property_T (const char *name, const TYPE &initial) | |
| Constructor. | |
| TAO_Notify_Property_T (const char *name) | |
| Constructor. | |
| int | set (const TAO_Notify_PropertySeq &property_seq) |
| int | set (const CosNotification::PropertyValue &value) |
Definition at line 96 of file Property_T.h.
| TAO_Notify_Property_T< TYPE >::TAO_Notify_Property_T | ( | const char * | name, | |
| const TYPE & | initial | |||
| ) |
Constructor.
Definition at line 67 of file Property_T.cpp.
:TAO_Notify_PropertyBase_T <TYPE> (name, initial) { }
| TAO_Notify_Property_T< TYPE >::TAO_Notify_Property_T | ( | const char * | name | ) |
Constructor.
Definition at line 61 of file Property_T.cpp.
:TAO_Notify_PropertyBase_T <TYPE> (name) { }
| int TAO_Notify_Property_T< TYPE >::set | ( | const TAO_Notify_PropertySeq & | property_seq | ) |
Init this Property from the sequence. Returns 0 on success, -1 on error
Definition at line 73 of file Property_T.cpp.
{
CosNotification::PropertyValue value;
if (property_seq.find (this->name_, value) == 0 && (value >>= this->value_))
{
this->valid_ = 1;
return 0;
}
this->valid_ = 0;
return -1;
}
| int TAO_Notify_Property_T< TYPE >::set | ( | const CosNotification::PropertyValue & | value | ) |
Init this Property from the CosNotification::PropertyValue Returns 0 on success, -1 on error
Definition at line 88 of file Property_T.cpp.
1.7.0