summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/Account_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/Account_i.cpp')
-rw-r--r--TAO/examples/Simple/bank/Account_i.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/Simple/bank/Account_i.cpp b/TAO/examples/Simple/bank/Account_i.cpp
index e301f7fab97..5b2fb3a7954 100644
--- a/TAO/examples/Simple/bank/Account_i.cpp
+++ b/TAO/examples/Simple/bank/Account_i.cpp
@@ -1,7 +1,7 @@
#include "Account_i.h"
// Constructor
-Account_i::Account_i (void)
+Account_i::Account_i ()
{
}
@@ -13,7 +13,7 @@ Account_i::Account_i (const char *name,
}
// Destructor
-Account_i::~Account_i (void)
+Account_i::~Account_i ()
{
}
@@ -26,7 +26,7 @@ Account_i::orb (CORBA::ORB_ptr o)
// Return the current balance on the server.
CORBA::Float
-Account_i::balance (void)
+Account_i::balance ()
{
return balance_;
}
@@ -47,7 +47,7 @@ Account_i::withdraw (CORBA::Float withdrawl)
}
char *
-Account_i::name (void)
+Account_i::name ()
{
return CORBA::string_dup (this->name_.in ());
}