summaryrefslogtreecommitdiff
path: root/orbsvcs/PSS/PSDL_Typecode_Defn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/PSS/PSDL_Typecode_Defn.cpp')
-rw-r--r--orbsvcs/PSS/PSDL_Typecode_Defn.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/orbsvcs/PSS/PSDL_Typecode_Defn.cpp b/orbsvcs/PSS/PSDL_Typecode_Defn.cpp
deleted file mode 100644
index cb458ae9528..00000000000
--- a/orbsvcs/PSS/PSDL_Typecode_Defn.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// $Id$
-
-#include "PSDL_Typecode_Defn.h"
-#include "PSDL_Stream.h"
-
-ACE_RCSID(be_visitor_typecode, typecode_defn, "$Id$")
-
-
-TAO_PSDL_Typecode_Defn::TAO_PSDL_Typecode_Defn ()
-{
- // Constructor
-}
-
-TAO_PSDL_Typecode_Defn::~TAO_PSDL_Typecode_Defn ()
-{
- // Destructor
-}
-
-int
-TAO_PSDL_Typecode_Defn::visit_type_declarator (TAO_PSDL_Type_Declarator *type_declarator)
-{
- ACE_UNUSED_ARG (type_declarator);
- // Get a pointer to PSDL_Stream of the stub implementation file
- TAO_PSDL_Stream *ps_si = TAO_PSDL_Scope::instance ()->get_si ();
-
- ps_si->indent (); // start from current indentation level
-
- // Generate the typecode information here
- *ps_si << "static const CORBA::Long _oc_";
-
- // Flat name generation.
- return 0;
-}