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_ |