summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_stream_factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_stream_factory.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_stream_factory.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/be/be_stream_factory.cpp b/TAO/TAO_IDL/be/be_stream_factory.cpp
index 9a4c6e2317d..bb662d03c5b 100644
--- a/TAO/TAO_IDL/be/be_stream_factory.cpp
+++ b/TAO/TAO_IDL/be/be_stream_factory.cpp
@@ -1,24 +1,25 @@
// $Id$
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
-#include "be_sunsoft.h"
+#include "idl.h"
+#include "idl_extern.h"
+#include "be.h"
+
+#include "be_sunsoft.h"
ACE_RCSID(be, be_factory, "$Id$")
-// Constructor.
+// constructor
TAO_OutStream_Factory::TAO_OutStream_Factory (void)
: strm_type_ (TAO_OutStream_Factory::TAO_SUNSOFT)
{
}
-// Destructor.
+// destructor
TAO_OutStream_Factory::~TAO_OutStream_Factory (void)
{
}
-// Set the type of specialized output stream we want.
+// set the type of specialized o/p stream we want
int
TAO_OutStream_Factory::set_stream_type
(TAO_OutStream_Factory::TAO_OutStream_Type t)
@@ -27,7 +28,7 @@ TAO_OutStream_Factory::set_stream_type
return 0;
}
-// Factory method.
+// factory method
TAO_OutStream *
TAO_OutStream_Factory::make_outstream (void)
{
@@ -36,7 +37,7 @@ TAO_OutStream_Factory::make_outstream (void)
case TAO_OutStream_Factory::TAO_SUNSOFT:
return new TAO_SunSoft_OutStream ();
case TAO_OutStream_Factory::TAO_FLICK:
- return (TAO_OutStream *)0; // Not implemented as yet.
+ return (TAO_OutStream *)0; // not implemented as yet
default:
return (TAO_OutStream *)0;
}