#include <NamingManager.h>
Public Member Functions | |
NamingBase () | |
Constructor. | |
virtual | ~NamingBase () |
Destructor. | |
virtual void | bindObject (const char *name, const RTObject_impl *rtobj)=0 |
Pure virtual function to bind the specified objects to NamingService. | |
virtual void | unbindObject (const char *name)=0 |
Pure virtual function to unbind the specified objects from NamingService. |
This is the abstract interface class for NamingServer management. Concrete management classes must implement the following pure virtual functions.
RTC::NamingBase::NamingBase | ( | ) | [inline] |
Constructor.
virtual RTC::NamingBase::~NamingBase | ( | ) | [inline, virtual] |
Destructor.
virtual void RTC::NamingBase::bindObject | ( | const char * | name, | |
const RTObject_impl * | rtobj | |||
) | [pure virtual] |
Pure virtual function to bind the specified objects to NamingService.
name | Names at the binding | |
rtobj | The target objects for the binding |
Implemented in RTC::NamingOnCorba.
virtual void RTC::NamingBase::unbindObject | ( | const char * | name | ) | [pure virtual] |
Pure virtual function to unbind the specified objects from NamingService.
name | The target objects for the unbinding |
Implemented in RTC::NamingOnCorba.