The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame^] | 1 | #ifndef OPTIONS_H |
2 | #define OPTIONS_H | ||||
3 | |||||
4 | #include <string> | ||||
5 | #include <vector> | ||||
6 | |||||
7 | using namespace std; | ||||
8 | |||||
9 | extern vector<string> g_listFiles; | ||||
10 | extern vector<string> g_inputBases; | ||||
11 | extern string g_outputBase; | ||||
12 | extern bool g_useHardLinks; | ||||
13 | |||||
14 | #endif // OPTIONS_H |