ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/Spectre/Spectre.cpp
Revision: 153
Committed: 2003-06-08T17:50:37-07:00 (22 years ago) by douglas
File size: 663 byte(s)
Log Message:
Did more stuff.

File Contents

# Content
1 // Spectre Samba Mounter
2 //
3 // Douglas Thrift
4 //
5 // Spectre.cpp
6
7 #include "Spectre.h"
8 #include "Maker.h"
9 #include "Mounter.h"
10
11 string program;
12 string programName = "Spectre Samba Mounter";
13 string programVersion = "1.0alpha";
14 bool debug = false;
15
16 #include "configure.h"
17
18 int main(int argc, char* argv[])
19 {
20 program = argv[0];
21
22 for (int index = 1; index < argc; index++)
23 {
24 string arg = argv[index];
25
26 if (arg == "-help")
27 {
28 //
29 return 0;
30 }
31 else if (arg == "-version")
32 {
33 //
34 return 0;
35 }
36 else if (arg == "-make")
37 {
38 //
39 }
40 else if (arg == "-mount")
41 {
42 //
43 }
44 else if (arg == "-D")
45 {
46 debug = true;
47 }
48 }
49
50 //
51
52 return 0;
53 }