summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h53
1 files changed, 27 insertions, 26 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h
index 77d0b074db9..15f33e4bee7 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h
@@ -1,30 +1,31 @@
-//=============================================================================
-/**
- * @file direct_proxy_impl_sh.h
- *
- * $Id$
- *
- * Concrete visitor for the Interface node. This
- * visitor handle the generation of the proxy
- * implementations Direct clas.
- *
- *
- * @author Angelo Corsaro <corsaro@cs.wustl.edu>
- */
-//=============================================================================
-
+//$Id$
+//
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// direct_proxy_impl_sh.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Interface node. This
+// visitor handle the generation of the proxy
+// implementations Direct clas.
+//
+// = AUTHOR
+// Angelo Corsaro <corsaro@cs.wustl.edu>
+//
+// ============================================================================
#ifndef BE_DIRECT_PROXY_IMPL_SH_H_
#define BE_DIRECT_PROXY_IMPL_SH_H_
-/**
- * @class be_visitor_interface_direct_proxy_impl_sh
- *
- * @brief Generates the declaration for the Direct proxy
- * implementation classes.
- */
class be_visitor_interface_direct_proxy_impl_sh : public be_visitor_interface
{
+ // = TITLE
+ // Generates the declaration for the Direct proxy
+ // implementation classes.
public:
// -- Ctor/Dtor Decl. --
@@ -32,18 +33,18 @@ public:
virtual ~be_visitor_interface_direct_proxy_impl_sh (void);
- /// visit an interface
virtual int visit_interface (be_interface *node);
+ // visit an interface
- /// This will just call the above method - no need to create
- /// another set of visitors for this stuff.
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.
- /// Helper to generate the declarations for the operations
- /// of any abstract parents we may have.
static int gen_abstract_ops_helper (be_interface *node,
be_interface *base,
TAO_OutStream *os);
+ // Helper to generate the declarations for the operations
+ // of any abstract parents we may have.
};
#endif /* BE_DIRECT_PROXY_IMPL_SH_H_ */