diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-30 23:25:53 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-30 23:25:53 +0000 |
commit | cf07f9f8a6874e0cba173df813056f37c78b3ace (patch) | |
tree | 639ad21e50551cc2a89c31b7ad63186e857a9fdb /ace/Log_Record.i | |
parent | f7897d95a4fb9acffc0c17b90061040825a405fc (diff) | |
download | ATCD-cf07f9f8a6874e0cba173df813056f37c78b3ace.tar.gz |
Added control for default inlined-functions.
Diffstat (limited to 'ace/Log_Record.i')
-rw-r--r-- | ace/Log_Record.i | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/Log_Record.i b/ace/Log_Record.i index f179125053d..64a82d2ffcf 100644 --- a/ace/Log_Record.i +++ b/ace/Log_Record.i @@ -3,7 +3,7 @@ // Log_Record.i -inline void +ASYS_INLINE void ACE_Log_Record::encode (void) { ACE_TRACE ("ACE_Log_Record::encode"); @@ -16,7 +16,7 @@ ACE_Log_Record::encode (void) this->pid_ = htonl (this->pid_); } -inline void +ASYS_INLINE void ACE_Log_Record::decode (void) { ACE_TRACE ("ACE_Log_Record::decode"); @@ -27,63 +27,63 @@ ACE_Log_Record::decode (void) this->length_ = ntohl (this->length_); } -inline long +ASYS_INLINE long ACE_Log_Record::type (void) const { ACE_TRACE ("ACE_Log_Record::type"); return this->type_; } -inline void +ASYS_INLINE void ACE_Log_Record::type (long t) { ACE_TRACE ("ACE_Log_Record::type"); this->type_ = t; } -inline long +ASYS_INLINE long ACE_Log_Record::length (void) const { ACE_TRACE ("ACE_Log_Record::length"); return this->length_; } -inline void +ASYS_INLINE void ACE_Log_Record::length (long l) { ACE_TRACE ("ACE_Log_Record::length"); this->length_ = l; } -inline const ACE_Time_Value & +ASYS_INLINE const ACE_Time_Value & ACE_Log_Record::time_stamp (void) const { ACE_TRACE ("ACE_Log_Record::time_stamp"); return this->time_stamp_; } -inline void +ASYS_INLINE void ACE_Log_Record::time_stamp (const ACE_Time_Value &ts) { ACE_TRACE ("ACE_Log_Record::time_stamp"); this->time_stamp_ = ts; } -inline long +ASYS_INLINE long ACE_Log_Record::pid (void) const { ACE_TRACE ("ACE_Log_Record::pid"); return this->pid_; } -inline void +ASYS_INLINE void ACE_Log_Record::pid (long p) { ACE_TRACE ("ACE_Log_Record::pid"); this->pid_ = p; } -inline ASYS_TCHAR * +ASYS_INLINE ASYS_TCHAR * ACE_Log_Record::msg_data (void) { ACE_TRACE ("ACE_Log_Record::msg_data"); |