summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/Simple_util.cpp
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>1999-01-17 01:13:40 +0000
committerbala <balanatarajan@users.noreply.github.com>1999-01-17 01:13:40 +0000
commit71804d1b069df56b2710df766d94f3aa237a1dea (patch)
tree275ea27a6280516fc7e616da219c88af1b4591fa /TAO/examples/Simple/Simple_util.cpp
parent3c8ecb2e567b574b36710216d01258cbb4e17778 (diff)
downloadATCD-71804d1b069df56b2710df766d94f3aa237a1dea.tar.gz
Made some changes given by Dr.Schmidt
Diffstat (limited to 'TAO/examples/Simple/Simple_util.cpp')
-rw-r--r--TAO/examples/Simple/Simple_util.cpp36
1 files changed, 16 insertions, 20 deletions
diff --git a/TAO/examples/Simple/Simple_util.cpp b/TAO/examples/Simple/Simple_util.cpp
index 0d420ca7768..676c14ccfa1 100644
--- a/TAO/examples/Simple/Simple_util.cpp
+++ b/TAO/examples/Simple/Simple_util.cpp
@@ -20,7 +20,8 @@ Server<Servant>::~Server (void)
// Parse the command-line arguments and set options.
template <class Servant>
-int Server<Servant>::parse_args (void)
+int
+Server<Servant>::parse_args (void)
{
ACE_Get_Opt get_opts (this->argc_, this->argv_, "do:");
int c = 0;
@@ -55,7 +56,8 @@ int Server<Servant>::parse_args (void)
// Initialize the server.
template <class Servant>
-int Server<Servant>::init (const char *servant_name,
+int
+Server<Servant>::init (const char *servant_name,
int argc,
char *argv[],
CORBA::Environment &env)
@@ -135,7 +137,8 @@ int Server<Servant>::run (CORBA::Environment &env)
}
template <class Servant>
-void Server<Servant>::register_name (void)
+void
+Server<Servant>::register_name (void)
{
namingClient.init (orb_manager_.orb());
// create the name for the naming service
@@ -179,7 +182,8 @@ Client<InterfaceObj, Var>::Client (void)
// Reads the Server ior from a file
template <class InterfaceObj, class Var>
-int Client<InterfaceObj, Var>::read_ior (char *filename)
+int
+Client<InterfaceObj, Var>::read_ior (char *filename)
{
// Open the file for reading.
ACE_HANDLE f_handle = ACE_OS::open (filename, 0);
@@ -209,10 +213,8 @@ int Client<InterfaceObj, Var>::read_ior (char *filename)
// Parses the command line arguments and returns an error status.
template <class InterfaceObj, class Var>
-// @@ Bala, please look at other ACE/TAO *.cpp files to see how to
-// format the methods correctly (hint, see where the return type goes
-// in the other examples.
-int Client<InterfaceObj, Var>::parse_args (void)
+int
+Client<InterfaceObj, Var>::parse_args (void)
{
ACE_Get_Opt get_opts (argc_, argv_, "df:k:x");
int c = 0;
@@ -263,10 +265,8 @@ Client<InterfaceObj, Var>::~Client (void)
}
template <class InterfaceObj, class Var>
-// @@ Bala, please look at other ACE/TAO *.cpp files to see how to
-// format the methods correctly (hint, see where the return type goes
-// in the other examples.
-int Client<InterfaceObj, Var>::init (int argc, char **argv)
+int
+Client<InterfaceObj, Var>::init (int argc, char **argv)
{
this->argc_ = argc;
this->argv_ = argv;
@@ -316,20 +316,16 @@ int Client<InterfaceObj, Var>::init (int argc, char **argv)
}
template <class InterfaceObj, class Var>
-// @@ Bala, please look at other ACE/TAO *.cpp files to see how to
-// format the methods correctly (hint, see where the return type goes
-// in the other examples.
-int Client<InterfaceObj, Var>::shutdown (void )
+int
+Client<InterfaceObj, Var>::shutdown (void )
{
// Returns the shutdwon flag
return shutdown_;
}
template <class InterfaceObj, class Var>
-// @@ Bala, please look at other ACE/TAO *.cpp files to see how to
-// format the methods correctly (hint, see where the return type goes
-// in the other examples.
-void Client<InterfaceObj, Var>::shutdown (int flag)
+void
+Client<InterfaceObj, Var>::shutdown (int flag)
{
// Fills the flag
shutdown_ = flag;