blob: 2bf94b12bbf101941b3394ea709c5949bf532e3e [file] [log] [blame]
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001#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>
Alexey Zaytsev0aa7fe62008-10-21 23:52:01 +04008#include <string>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07009using 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