summaryrefslogtreecommitdiff
path: root/TAO/utils/wxNamingViewer/wxViewIORDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/utils/wxNamingViewer/wxViewIORDialog.h')
-rw-r--r--TAO/utils/wxNamingViewer/wxViewIORDialog.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/utils/wxNamingViewer/wxViewIORDialog.h b/TAO/utils/wxNamingViewer/wxViewIORDialog.h
deleted file mode 100644
index facd56e2efa..00000000000
--- a/TAO/utils/wxNamingViewer/wxViewIORDialog.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-// wxViewIORDialog.h
-
-#ifndef i_wxViewIORDialog_h
-#define i_wxViewIORDialog_h
-
-
-class WxViewIORDialog:
- public wxDialog
-{
-public:
- WxViewIORDialog(
- CORBA::ORB_ptr orb,
- CORBA::Object_ptr object,
- wxWindow* parent);
-
-private:
- void OnApply( wxCommandEvent& event);
- void onIORText( wxCommandEvent& event);
- virtual bool TransferDataFromWindow();
- virtual bool TransferDataToWindow();
- void decodeIOR();
-
- wxString typeID;
- wxString ior;
- class wxTextCtrl* typeIDText;
- class wxTextCtrl* iorText;
- class wxTreeCtrl* profiles;
- class wxButton* applyButton;
-
- CORBA::Object_var object;
- CORBA::ORB_ptr orb;
-
- DECLARE_EVENT_TABLE()
-};
-
-#endif
-