ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/ScanUtility.h
Revision: 269
Committed: 2003-08-19T01:19:24-07:00 (21 years, 10 months ago) by douglas
Content type: text/x-c
File size: 742 byte(s)
Log Message:
Hello nurse!

File Contents

# User Rev Content
1 douglas 260 // Vance Thrift and Biller File Utility 2
2     //
3     // Douglas Thrift
4     //
5 douglas 269 // $Id: ScanUtility.h,v 1.4 2003/08/19 08:19:24 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 douglas 269 char scanDir[MAX_PATH];
18     char saveDir[MAX_PATH];
19 douglas 268 unsigned number;
20     static unsigned count;
21     static map<unsigned, ScanUtility*> utilities;
22     static map<HWND, ScanUtility*> windows;
23 douglas 269 void loadDirs(void);
24     void saveDirs(void);
25     void setScanDir(HWND parent = NULL);
26     void setSaveDir(HWND parent = NULL);
27 douglas 268 static INT_PTR CALLBACK start(HWND dialog, UINT msg, WPARAM w, LPARAM l);
28 douglas 260 public:
29 douglas 268 ScanUtility();
30     ~ScanUtility();
31 douglas 265 void run(void);
32 douglas 260 };
33    
34     #endif // _ScanUtility_h_