1 |
douglas |
260 |
// Vance Thrift and Biller File Utility 2 |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
douglas |
268 |
// $Id: ScanUtility.h,v 1.3 2003/08/19 04:39:38 douglas Exp $ |
6 |
douglas |
260 |
|
7 |
|
|
#ifndef _ScanUtility_h_ |
8 |
|
|
#define _ScanUtility_h_ |
9 |
|
|
|
10 |
|
|
#include "IndividualClient.h" |
11 |
|
|
|
12 |
|
|
class ScanUtility |
13 |
|
|
{ |
14 |
|
|
private: |
15 |
douglas |
268 |
HPROPSHEETPAGE wizard[5]; |
16 |
|
|
char* title; |
17 |
|
|
unsigned number; |
18 |
|
|
static unsigned count; |
19 |
|
|
static map<unsigned, ScanUtility*> utilities; |
20 |
|
|
static map<HWND, ScanUtility*> windows; |
21 |
|
|
static INT_PTR CALLBACK start(HWND dialog, UINT msg, WPARAM w, LPARAM l); |
22 |
douglas |
260 |
public: |
23 |
douglas |
268 |
ScanUtility(); |
24 |
|
|
~ScanUtility(); |
25 |
douglas |
265 |
void run(void); |
26 |
douglas |
260 |
}; |
27 |
|
|
|
28 |
|
|
#endif // _ScanUtility_h_ |