Christopher Wiley | 2f77417 | 2015-08-30 10:57:07 -0700 | [diff] [blame] | 1 | #ifndef AIDL_SEARCH_PATH_H_ |
| 2 | #define AIDL_SEARCH_PATH_H_ |
Adam Lesinski | 282e181 | 2014-01-23 18:17:42 -0800 | [diff] [blame] | 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 | |
Christopher Wiley | 2f77417 | 2015-08-30 10:57:07 -0700 | [diff] [blame] | 22 | #endif // AIDL_SEARCH_PATH_H_ |