blob: 4fec257557de407bcb36fd83979cb6963ac5d8e2 [file] [log] [blame]
Christopher Wiley2f774172015-08-30 10:57:07 -07001#ifndef AIDL_SEARCH_PATH_H_
2#define AIDL_SEARCH_PATH_H_
Adam Lesinski282e1812014-01-23 18:17:42 -08003
4#include <stdio.h>
5
6#if __cplusplus
7#include <vector>
8#include <string>
9using namespace std;
10extern "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
15char* find_import_file(const char* given);
16
17#if __cplusplus
18}; // extern "C"
19void set_import_paths(const vector<string>& importPaths);
20#endif
21
Christopher Wiley2f774172015-08-30 10:57:07 -070022#endif // AIDL_SEARCH_PATH_H_