summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-09 07:08:18 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-09 07:08:18 +0000
commit957681064207962c8e33263c7ebebbb4a83f7af0 (patch)
treed28e87f0be723cf1eed7e0f52298d8153fc8f4cd /TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp
parent1eeb03769ad41dd4bc5ac7d438cc98680ef55059 (diff)
downloadATCD-ACE-4_6_27.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_27'.ACE-4_6_27
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp b/TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp
deleted file mode 100644
index d2c47ea3bd4..00000000000
--- a/TAO/TAO_IDL/be/be_visitor_module/module_ih.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO IDL
-//
-// = FILENAME
-// module_ih.cpp
-//
-// = DESCRIPTION
-// Visitor generating code for Module in the implementation header
-//
-// = AUTHOR
-// Yamuna Krishnamurthy (yamuna@cs.wustl.edu)
-//
-// ============================================================================
-
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
-
-#include "be_visitor_module.h"
-
-ACE_RCSID(be_visitor_module, module_ih, "$Id$")
-
-// ************************************************************
-// Module visitor for server header
-// ************************************************************
-
-be_visitor_module_ih::be_visitor_module_ih (be_visitor_context *ctx)
- : be_visitor_module (ctx)
-{
-}
-
-be_visitor_module_ih::~be_visitor_module_ih (void)
-{
-}
-
-int
-be_visitor_module_ih::visit_module (be_module *node)
-{
- if (!node->impl_hdr_gen () && !node->imported ()) // not generated and not imported
- {
-
- if (this->visit_scope (node) == -1)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "(%N:%l) be_visitor_module_sh::"
- "visit_module - "
- "codegen for scope failed\n"), -1);
- }
-
- }
- return 0;
-}