summaryrefslogtreecommitdiff
path: root/TAO/utils/wxNamingViewer/wxSelectNSDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/utils/wxNamingViewer/wxSelectNSDialog.h')
-rw-r--r--TAO/utils/wxNamingViewer/wxSelectNSDialog.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/utils/wxNamingViewer/wxSelectNSDialog.h b/TAO/utils/wxNamingViewer/wxSelectNSDialog.h
deleted file mode 100644
index b4e2eea2f47..00000000000
--- a/TAO/utils/wxNamingViewer/wxSelectNSDialog.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// $Id$
-// wxSelectNSDialog.h
-
-#ifndef i_WxSelectNSDialog_h
-#define i_WxSelectNSDialog_h
-
-class WxSelectNSDialog : public
- wxDialog
-{
-public:
- WxSelectNSDialog( wxWindow* parent);
- virtual ~WxSelectNSDialog();
-
- const wxString& getIOR() const {return ior;};
- const wxString& getServerName() const {return serverName;};
-
-private:
- void onAdd( wxCommandEvent& event);
- void onDefault( wxCommandEvent& event);
- void onInitDialog( wxInitDialogEvent& event);
- void onOK( wxCommandEvent& event);
- void onRemove( wxCommandEvent& event);
- void onLeftDClick( wxMouseEvent& event);
-
- class ACE_Configuration* config;
-
- wxListBox* servers;
- wxString ior;
- wxString serverName;
-
- DECLARE_EVENT_TABLE()
-};
-
-#endif
-