ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/Chooser.h
Revision: 263
Committed: 2003-08-16T16:09:44-07:00 (21 years, 10 months ago) by douglas
Content type: text/x-c
File size: 476 byte(s)
Log Message:
Choose me!

File Contents

# User Rev Content
1 douglas 263 // Vance Thrift and Biller File Utility 2
2     //
3     // Douglas Thrift
4     //
5     // $Id: Chooser.h,v 1.1 2003/08/16 23:09:44 douglas Exp $
6    
7     #ifndef _Chooser_h_
8     #define _Chooser_h_
9    
10     #include "VTBFileUtil2.h"
11    
12     class Chooser
13     {
14     private:
15     bool shortcut;
16     Mode choice;
17     void desktop(void);
18     public:
19     Chooser() { shortcut = false; choice = none; }
20     ~Chooser() {}
21     Mode choose(HWND parent = NULL);
22     friend INT_PTR CALLBACK smersh(HWND dialog, UINT msg, WPARAM w, LPARAM l);
23     };
24    
25     #endif // _Chooser_h_