summaryrefslogtreecommitdiff
path: root/TAO/utils/wxNamingViewer/wxBindNewContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/utils/wxNamingViewer/wxBindNewContext.h')
-rw-r--r--TAO/utils/wxNamingViewer/wxBindNewContext.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/utils/wxNamingViewer/wxBindNewContext.h b/TAO/utils/wxNamingViewer/wxBindNewContext.h
new file mode 100644
index 00000000000..f74a38e131f
--- /dev/null
+++ b/TAO/utils/wxNamingViewer/wxBindNewContext.h
@@ -0,0 +1,23 @@
+// $Id$
+// wxBindNewContext.h
+
+#ifndef i_wxBindNewContext_h
+#define i_wxBindNewContext_h
+
+#include "orbsvcs/CosNamingC.h"
+
+class WxBindNewContext:
+ public wxDialog
+{
+public:
+ WxBindNewContext( wxWindow* parent);
+
+ CosNaming::Name& getName() { return name;}
+
+private:
+ virtual bool TransferDataFromWindow();
+ CosNaming::Name name;
+};
+
+#endif
+