summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/Bank_Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/bank/Bank_Client_i.h')
-rw-r--r--TAO/examples/Simple/bank/Bank_Client_i.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/TAO/examples/Simple/bank/Bank_Client_i.h b/TAO/examples/Simple/bank/Bank_Client_i.h
deleted file mode 100644
index b8b6526bc27..00000000000
--- a/TAO/examples/Simple/bank/Bank_Client_i.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Simple/bank
-//
-// = FILENAME
-// Bank_Client_i.h
-//
-// = DESCRIPTION
-// This class implements the interface calls for RMI.
-//
-// = AUTHOR
-//
-// Balachandran Natarajan <bala@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef BANK_CLIENT_I_H
-#define BANK_CLIENT_I_H
-
-#include "../Simple_util.h"
-#include "BankC.h"
-
-class Bank_Client_i
-{
- // = TITLE
- // Grid_Client interface subclass.
- //
- // = DESCRIPTION
- // This class implements the interface between the interface
- // objects and the client .
-public:
- // = Initialization and termination methods.
- Bank_Client_i (void);
- // Constructor
-
- virtual ~Bank_Client_i (void);
- // Destructor
-
- virtual int run (const char *, int, char *[]);
- // Execute the methods.
-
-private:
- Client<Bank::AccountManager, Bank::AccountManager_var> client;
- // Instantiate the client object.
-
- int check_accounts (void);
- // Method that calls all the test functions
-
- void test_for_different_name (CORBA::Environment &env);
- // Tests if accounts opened with different names return a different account
- // reference.
-
- void test_for_same_name (CORBA::Environment &env);
- // Tests if accounts opened with the same name return the same
- // object reference.
-
- void test_for_overdraft (CORBA::Environment &env);
- // Tests for the Overdraft Exception when the client tries to
- // withdraw more money than the current balance.
-};
-
-#endif /* TIME_CLIENT_I_H */