The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [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 |