blob: 2bf94b12bbf101941b3394ea709c5949bf532e3e [file] [log] [blame]
Adam Lesinski282e1812014-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>
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
22#endif // DEVICE_TOOLS_AIDL_SEARCH_PATH_H
23