32 #ifndef vtkResourceFileLocator_h
33 #define vtkResourceFileLocator_h
35 #include "vtkCommonMiscModule.h"
53 vtkSetMacro(PrintDebugInformation,
bool);
54 vtkGetMacro(PrintDebugInformation,
bool);
55 vtkBooleanMacro(PrintDebugInformation,
bool);
78 const std::vector<std::string>& landmark_prefixes,
const std::string& landmark,
91 static std::string GetLibraryPathForSymbolUnix(
const char* symbolname);
92 static std::string GetLibraryPathForSymbolWin32(
const void* fptr);
106 #if defined(_WIN32) && !defined(__CYGWIN__)
107 #define vtkGetLibraryPathForSymbol(function) \
108 vtkResourceFileLocator::GetLibraryPathForSymbolWin32(reinterpret_cast<const void*>(&function))
110 #define vtkGetLibraryPathForSymbol(function) \
111 vtkResourceFileLocator::GetLibraryPathForSymbolUnix(#function)