// -*- C++ -*- TAO_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE const TYPE& TAO_Notify_PropertyBase_T::value () const { return this->value_; } template ACE_INLINE const char * TAO_Notify_PropertyBase_T::name () const { return this->name_; } template ACE_INLINE CORBA::Boolean TAO_Notify_PropertyBase_T::is_valid () const { return this->valid_; } template ACE_INLINE bool TAO_Notify_PropertyBase_T::operator== (const TYPE &rhs) const { return (this->value_ == rhs); } template ACE_INLINE bool TAO_Notify_PropertyBase_T::operator!= (const TYPE &rhs) const { return (this->value_ != rhs); } template ACE_INLINE void TAO_Notify_PropertyBase_T:: invalidate (void) { this->valid_ = 0; } template ACE_INLINE void TAO_Notify_PropertyBase_T:: assign (const TYPE& value) { this->value_ = value; this->valid_ = 1; } /******************************************************************************/ template ACE_INLINE const char * TAO_Notify_StructProperty_T::name () const { return this->name_; } template ACE_INLINE const TYPE& TAO_Notify_StructProperty_T::value () const { return this->value_; } template ACE_INLINE CORBA::Boolean TAO_Notify_StructProperty_T::is_valid () const { return this->valid_; } TAO_END_VERSIONED_NAMESPACE_DECL