summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h
new file mode 100644
index 00000000000..f0d12a2bd3d
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h
@@ -0,0 +1,45 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// smart_proxy_cs.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Interface node.
+// This provides code generation for smart proxy classes in the client stub.
+//
+// = AUTHOR
+// Kirthika Parameswaran
+//
+// ============================================================================
+
+#ifndef _BE_INTERFACE_SMART_PROXY_CS_H_
+#define _BE_INTERFACE_SMART_PROXY_CS_H_
+
+class be_visitor_interface_smart_proxy_cs : public be_visitor_interface
+{
+ // = TITLE
+ // Generate the "smart proxy" class declaration.
+
+public:
+ be_visitor_interface_smart_proxy_cs (be_visitor_context *ctx);
+ // constructor
+
+ virtual ~be_visitor_interface_smart_proxy_cs (void);
+ // destructor
+
+ virtual int visit_interface (be_interface *node);
+ // visit interface
+
+ virtual int visit_component (be_component *node);
+ // This will just call the above method - no need to create
+ // another set of visitors for this stuff.
+};
+
+#endif /* _BE_INTERFACE_SMART_PROXY_CS_H_ */