xref: /aosp_15_r20/build/make/tools/atree/options.h (revision 9e94795a3d4ef5c1d47486f9a02bb378756cea8a)
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