• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
15