summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_sunsoft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_sunsoft.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_sunsoft.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_sunsoft.cpp b/TAO/TAO_IDL/be/be_sunsoft.cpp
index 0364348c8ce..08f6588da15 100644
--- a/TAO/TAO_IDL/be/be_sunsoft.cpp
+++ b/TAO/TAO_IDL/be/be_sunsoft.cpp
@@ -1,11 +1,14 @@
// $Id$
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
#include "be_sunsoft.h"
+#include "ast_expression.h"
+#include "utl_identifier.h"
+#include "utl_idlist.h"
+#include "utl_string.h"
-ACE_RCSID(be, be_sunsoft, "$Id$")
+ACE_RCSID (be,
+ be_sunsoft,
+ "$Id$")
TAO_SunSoft_OutStream::TAO_SunSoft_OutStream (void)
: TAO_OutStream ()
@@ -168,6 +171,9 @@ TAO_SunSoft_OutStream::print (AST_Expression *expr)
case AST_Expression::EV_wstring:
this->TAO_OutStream::print ("L\"%s\"", ev->u.wstrval);
break;
+ case AST_Expression::EV_enum:
+ this->print (expr->n ());
+ break;
default:
break;
}