📄 property_t.inl
字号:
// Property_T.inl,v 1.6 2003/07/16 20:29:51 pradeep Exp
template <class TYPE> ACE_INLINE const TYPE&
TAO_Notify_PropertyBase_T<TYPE>::value (void) const
{
return this->value_;
}
template <class TYPE> ACE_INLINE CORBA::Boolean
TAO_Notify_PropertyBase_T<TYPE>::is_valid (void) const
{
return this->valid_;
}
template <class TYPE> ACE_INLINE int
TAO_Notify_PropertyBase_T<TYPE>::operator== (const TYPE &rhs) const
{
return (this->value_ == rhs);
}
template <class TYPE> ACE_INLINE int
TAO_Notify_PropertyBase_T<TYPE>::operator!= (const TYPE &rhs) const
{
return (this->value_ != rhs);
}
template <class TYPE> ACE_INLINE void
TAO_Notify_PropertyBase_T<TYPE>:: invalidate (void)
{
this->valid_ = 0;
}
/******************************************************************************/
template <class TYPE> ACE_INLINE const TYPE&
TAO_Notify_StructProperty_T<TYPE>::value (void) const
{
return this->value_;
}
template <class TYPE> ACE_INLINE CORBA::Boolean
TAO_Notify_StructProperty_T<TYPE>::is_valid (void) const
{
return this->valid_;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -