summaryrefslogtreecommitdiff
path: root/TAO/utils/wxNamingViewer/wxNamingObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/utils/wxNamingViewer/wxNamingObject.h')
-rw-r--r--TAO/utils/wxNamingViewer/wxNamingObject.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/utils/wxNamingViewer/wxNamingObject.h b/TAO/utils/wxNamingViewer/wxNamingObject.h
deleted file mode 100644
index 3daee322c6f..00000000000
--- a/TAO/utils/wxNamingViewer/wxNamingObject.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-// wxNamingObject.h
-
-#ifndef i_wxNamingObject_h
-#define i_wxNamingObject_h
-
-#include "orbsvcs/CosNamingC.h"
-#include "wx/treectrl.h"
-
-class WxNamingObject:
- public wxTreeItemData
-{
-public:
- WxNamingObject(
- CosNaming::Name& Name,
- CORBA::Object_ptr pObject,
- bool Context);
- WxNamingObject( CORBA::Object_ptr pObject);
- ~WxNamingObject();
-
- CosNaming::NamingContext_ptr NamingContext();
- // Returns a duplicated naming context ptr if this is a context or nil if its not
- CORBA::Object_ptr Object();
- // returns a non duplicated object reference
- CosNaming::Name& Name();
- // returns the name of the object
- bool IsContext() {return m_Context;};
- // Returns true if this is a context
-
-private:
- CORBA::Object_var m_Object;
- CosNaming::Name m_Name;
- bool m_Context;
-};
-
-#endif
-