ACE_Section_Key_Internal
.
#include <ace/Configuration.h>
class ACE_Configuration_Section_Key {
public:
friend class ACE_Configuration;
ACE_Configuration_Section_Key (void);
ACE_EXPLICIT ACE_Configuration_Section_Key ( ACE_Section_Key_Internal *key );
ACE_Configuration_Section_Key ( const ACE_Configuration_Section_Key &rhs );
~ACE_Configuration_Section_Key (void);
operator= (const ACE_Configuration_Section_Key &rhs);
private:
ACE_Section_Key_Internal *key_;
};
friend class ACE_Configuration;
ACE_Configuration_Section_Key (void);
ACE_EXPLICIT ACE_Configuration_Section_Key (
ACE_Section_Key_Internal *key
);
key
.
ACE_Configuration_Section_Key (
const ACE_Configuration_Section_Key &rhs
);
~ACE_Configuration_Section_Key (void);
dec_ref
on key_
.
operator= (const ACE_Configuration_Section_Key &rhs);
dec_ref
on key_
and add_ref
to
rhs.key_
ACE_Section_Key_Internal *key_;
chris@stentorsoft.com