blob: 44fa6e2d4d465927e9899c23982df034016d7005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// -*- 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 (void);
// Tests if accounts opened with different names return a different account
// reference.
void test_for_same_name (void);
// Tests if accounts opened with the same name return the same
// object reference.
void test_for_overdraft (void);
// Tests for the Overdraft Exception when the client tries to
// withdraw more money than the current balance.
};
#endif /* TIME_CLIENT_I_H */
|