blob: 9dd199ebf886d69b0de34037700691b13c16ff5e [file] [log] [blame]
Adam Lesinskiffa16862014-01-23 18:17:42 -08001#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>
Christopher Wiley9f4c7ae2015-08-24 14:07:32 -07009
10using std::string;
11using std::vector;
12
Adam Lesinskiffa16862014-01-23 18:17:42 -080013extern "C" {
14#endif
15
16// returns a FILE* and the char* for the file that it found
17// given is the class name we're looking for
18char* find_import_file(const char* given);
19
20#if __cplusplus
21}; // extern "C"
22void set_import_paths(const vector<string>& importPaths);
23#endif
24
25#endif // DEVICE_TOOLS_AIDL_SEARCH_PATH_H
26