1 |
// Vance Thrift and Biller File Utility 2 |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id: IndividualClient.h,v 1.3 2003/08/17 23:39:32 douglas Exp $ |
6 |
|
7 |
#ifndef _IndividualClient_h_ |
8 |
#define _IndividualClient_h_ |
9 |
|
10 |
#include "VTBFileUtil2.h" |
11 |
|
12 |
class IndividualClient |
13 |
{ |
14 |
private: |
15 |
unsigned number; |
16 |
string name; |
17 |
string file; |
18 |
void demunge(void); |
19 |
string demunge(const string& munged); |
20 |
void capitalize(string& word, unsigned index = 0, unsigned count = 1); |
21 |
public: |
22 |
IndividualClient() { number = 0; } |
23 |
~IndividualClient() {} |
24 |
unsigned getNumber(void); |
25 |
string getName(void); |
26 |
string getFile(void); |
27 |
void setNumber(unsigned number); |
28 |
void setName(const string& name); |
29 |
void setFile(const string& file); |
30 |
}; |
31 |
|
32 |
#endif // _IndividualClient_h_ |