summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/Account_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/Account_i.h')
-rw-r--r--TAO/examples/Simple/bank/Account_i.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/Simple/bank/Account_i.h b/TAO/examples/Simple/bank/Account_i.h
index bbdfa6775ac..9e20a47f7b2 100644
--- a/TAO/examples/Simple/bank/Account_i.h
+++ b/TAO/examples/Simple/bank/Account_i.h
@@ -29,19 +29,19 @@ class Account_i : public POA_Bank::Account
{
public:
/// Constructor.
- Account_i (void);
+ Account_i ();
/// Constructor.
Account_i (const char *, CORBA::Float);
/// Destructor.
- virtual ~Account_i (void);
+ virtual ~Account_i ();
/// Get the current balance in the account.
- virtual CORBA::Float balance (void);
+ virtual CORBA::Float balance ();
/// Get the name of the <Account> holder.
- virtual char *name (void);
+ virtual char *name ();
/// Set the name of the <Account> holder.
virtual void name (const char *name);