summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_template_export.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_template_export.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_template_export.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_template_export.h b/TAO/TAO_IDL/be_include/be_visitor_template_export.h
deleted file mode 100644
index 1f74232c376..00000000000
--- a/TAO/TAO_IDL/be_include/be_visitor_template_export.h
+++ /dev/null
@@ -1,57 +0,0 @@
-//
-// $Id$
-//
-
-/* -*- c++ -*- */
-// ============================================================================
-//
-// = LIBRARY
-// TAO IDL
-//
-// = FILENAME
-// be_visitor_template_export.h
-//
-// = DESCRIPTION
-// This visitor generates an explicit export of a sequence's
-// template base class. It is conditionally launched by a
-// command line option and is motivated by a bug in Visual
-// Studio C++ (.NET 2002, .NET 2003, and Express 2005), documented in
-// http://support.microsoft.com/default.aspx?scid=kb;en-us;309801
-//
-// = AUTHOR
-// Jeff Parsons <j.parsons@vanderbilt.edu>
-//
-// ============================================================================
-
-#ifndef TAO_BE_VISITOR_TEMPLATE_EXPORT_H
-#define TAO_BE_VISITOR_TEMPLATE_EXPORT_H
-
-#include "be_visitor_scope.h"
-
-class AST_Interface;
-
-class be_visitor_template_export : public be_visitor_scope
-{
- //
- // = TITLE
- // be_visitor_template_export
- //
- // = DESCRIPTION
- // Generates sequence template base class export instantiation.
- //
-public:
- be_visitor_template_export (be_visitor_context *ctx);
-
- virtual ~be_visitor_template_export (void);
-
- virtual int visit_root (be_root *node);
-
- virtual int visit_module (be_module *node);
-
- virtual int visit_typedef (be_typedef *node);
-
- virtual int visit_sequence (be_sequence *node);
-};
-
-
-#endif // TAO_BE_VISITOR_TEMPLATE_EXPORT_H