#include <Storable.h>
Public Member Functions | |
void | size (unsigned int size) |
unsigned int | size () const |
void | destroyed (int flag) |
int | destroyed () const |
Private Attributes | |
unsigned int | size_ |
int | destroyed_ |
Definition at line 33 of file Storable.h.
ACE_INLINE int TAO_NS_Persistence_Header::destroyed | ( | ) | const |
Definition at line 36 of file Storable.inl.
References destroyed_.
00037 { 00038 return this->destroyed_; 00039 }
ACE_INLINE void TAO_NS_Persistence_Header::destroyed | ( | int | flag | ) |
Definition at line 30 of file Storable.inl.
References destroyed_.
Referenced by TAO_NS_FlatFileStream::operator<<(), TAO_NS_FlatFileStream::operator>>(), and TAO_Storable_Naming_Context::Write().
00031 { 00032 this->destroyed_ = flag; 00033 }
ACE_INLINE unsigned int TAO_NS_Persistence_Header::size | ( | ) | const |
Definition at line 24 of file Storable.inl.
References size_.
00025 { 00026 return this->size_; 00027 }
TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE void TAO_NS_Persistence_Header::size | ( | unsigned int | size | ) |
Definition at line 18 of file Storable.inl.
References size_.
Referenced by TAO_NS_FlatFileStream::operator<<(), TAO_NS_FlatFileStream::operator>>(), and TAO_Storable_Naming_Context::Write().
int TAO_NS_Persistence_Header::destroyed_ [private] |
unsigned int TAO_NS_Persistence_Header::size_ [private] |