1 |
douglas |
255 |
// Vance Thrift and Biller File Utility 2 |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// $Id: VTBFileUtil2.h,v 1.1 2003/08/16 00:12:57 douglas Exp $ |
6 |
|
|
|
7 |
|
|
#ifndef _VTBFileUtil_h_ |
8 |
|
|
#define _VTBFileUtil_h_ |
9 |
|
|
|
10 |
|
|
#ifdef _DEBUG |
11 |
|
|
#pragma warning(disable:4786) |
12 |
|
|
#endif // _DEBUG |
13 |
|
|
|
14 |
|
|
#include <iostream> |
15 |
|
|
#include <string> |
16 |
|
|
#include <sstream> |
17 |
|
|
#include <cctype> |
18 |
|
|
#include <vector> |
19 |
|
|
|
20 |
|
|
#include <windows.h> |
21 |
|
|
|
22 |
|
|
using namespace std; |
23 |
|
|
|
24 |
|
|
extern bool debug; |
25 |
|
|
extern string program; |
26 |
|
|
extern string programName; |
27 |
|
|
extern unsigned programVersion; |
28 |
|
|
|
29 |
|
|
void usage(void); |
30 |
|
|
void version(void); |
31 |
|
|
|
32 |
|
|
#endif // _VTBFileUtil_h_ |