blob: de10d9b8445bdf746a64b244f5424b38da32960e [file] [log] [blame]
Christopher Wiley2f774172015-08-30 10:57:07 -07001#ifndef AIDL_SEARCH_PATH_H_
2#define AIDL_SEARCH_PATH_H_
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003
4#include <stdio.h>
5
6#if __cplusplus
7#include <vector>
8#include <string>
Christopher Wiley1eaa9ed2015-08-24 14:07:32 -07009
10using std::string;
11using std::vector;
12
The Android Open Source Project9066cfe2009-03-03 19:31:44 -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
Christopher Wiley2f774172015-08-30 10:57:07 -070025#endif // AIDL_SEARCH_PATH_H_