2015-08-30 10:57:07 -07:00
|
|
|
#ifndef AIDL_SEARCH_PATH_H_
|
|
|
|
#define AIDL_SEARCH_PATH_H_
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2015-08-24 14:07:32 -07:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
2009-03-03 19:31:44 -08:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// returns a FILE* and the char* for the file that it found
|
|
|
|
// given is the class name we're looking for
|
|
|
|
char* find_import_file(const char* given);
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
}; // extern "C"
|
|
|
|
void set_import_paths(const vector<string>& importPaths);
|
|
|
|
#endif
|
|
|
|
|
2015-08-30 10:57:07 -07:00
|
|
|
#endif // AIDL_SEARCH_PATH_H_
|