OSDN Git Service

Merge "Updated link to material design page." into mnc-io-docs
[android-x86/frameworks-base.git] / tools / aidl / search_path.h
1 #ifndef DEVICE_TOOLS_AIDL_SEARCH_PATH_H
2 #define DEVICE_TOOLS_AIDL_SEARCH_PATH_H
3
4 #include <stdio.h>
5
6 #if __cplusplus
7 #include <vector>
8 #include <string>
9 using namespace std;
10 extern "C" {
11 #endif
12
13 // returns a FILE* and the char* for the file that it found
14 // given is the class name we're looking for
15 char* find_import_file(const char* given);
16
17 #if __cplusplus
18 }; // extern "C"
19 void set_import_paths(const vector<string>& importPaths);
20 #endif
21
22 #endif // DEVICE_TOOLS_AIDL_SEARCH_PATH_H
23