ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/License.h
Revision: 291
Committed: 2003-09-05T01:57:00-07:00 (21 years, 9 months ago) by douglas
Content type: text/x-c
File size: 542 byte(s)
Log Message:
Editing is rich.

File Contents

# Content
1 // Vance Thrift and Biller File Utility 2
2 //
3 // Douglas Thrift
4 //
5 // $Id: License.h,v 1.1 2003/09/05 08:57:00 douglas Exp $
6
7 #ifndef _License_h_
8 #define _License_h_
9
10 #include "VTBFileUtil2.h"
11
12 class License
13 {
14 private:
15 unsigned number;
16 static unsigned count;
17 static map<unsigned, License*> licenses;
18 static map<HWND, License*> windows;
19 static INT_PTR CALLBACK window(HWND dialog, UINT msg, WPARAM w, LPARAM l);
20 public:
21 License();
22 ~License();
23 void display(HWND parent = NULL);
24 void check(HWND parent = NULL);
25 };
26
27 #endif // _License_h_