3 #ifndef i_wxNamingObject_h
4 #define i_wxNamingObject_h
6 #include "orbsvcs/CosNamingC.h"
7 #include "wx/treectrl.h"
14 CosNaming::Name
& Name
,
15 CORBA::Object_ptr pObject
,
17 WxNamingObject( CORBA::Object_ptr pObject
);
20 CosNaming::NamingContext_ptr
NamingContext();
21 // Returns a duplicated naming context ptr if this is a context or nil if its not
22 CORBA::Object_ptr
Object();
23 // returns a non duplicated object reference
24 CosNaming::Name
& Name();
25 // returns the name of the object
26 bool IsContext() {return m_Context
;};
27 // Returns true if this is a context
30 CORBA::Object_var m_Object
;
31 CosNaming::Name m_Name
;