summaryrefslogtreecommitdiff
path: root/TAO/utils/wxNamingViewer/wxBindDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/utils/wxNamingViewer/wxBindDialog.h')
-rw-r--r--TAO/utils/wxNamingViewer/wxBindDialog.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/utils/wxNamingViewer/wxBindDialog.h b/TAO/utils/wxNamingViewer/wxBindDialog.h
deleted file mode 100644
index c0b4c37250d..00000000000
--- a/TAO/utils/wxNamingViewer/wxBindDialog.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-// wxBindDialog.h
-
-#ifndef i_wxBindDialog_h
-#define i_wxBindDialog_h
-
-#include "orbsvcs/CosNamingC.h"
-
-
-class WxBindDialog:
- public wxDialog
-{
-public:
- WxBindDialog( bool isContext, CORBA::ORB_ptr orb, wxWindow* parent);
-
- CORBA::Object_ptr getObject() {return object;};
- CosNaming::Name& getName() {return name;};
-
-private:
- wxString ior;
- wxString id;
- wxString kind;
-
- virtual bool TransferDataFromWindow();
-
- void onViewIOR( wxCommandEvent& event);
-
- CORBA::Object_var object;
- CORBA::ORB_ptr orb;
- CosNaming::Name name;
- bool isContext;
-
- DECLARE_EVENT_TABLE()
-};
-
-#endif
-