32 #ifndef vtkResourceFileLocator_h 
   33 #define vtkResourceFileLocator_h 
   35 #include "vtkCommonMiscModule.h"  
   57   VTK_LEGACY(
void SetPrintDebugInformation(
bool));
 
   58   VTK_LEGACY(
bool GetPrintDebugInformation());
 
   59   VTK_LEGACY(
void PrintDebugInformationOn());
 
   60   VTK_LEGACY(
void PrintDebugInformationOff());
 
   68   vtkSetMacro(LogVerbosity, 
int);
 
   69   vtkGetMacro(LogVerbosity, 
int);
 
   92     const std::vector<std::string>& landmark_prefixes, 
const std::string& landmark,
 
  105   static std::string GetLibraryPathForSymbolUnix(
const char* symbolname);
 
  106   static std::string GetLibraryPathForSymbolWin32(
const void* fptr);
 
  120 #if defined(_WIN32) && !defined(__CYGWIN__) 
  121 #define vtkGetLibraryPathForSymbol(function)                                                       \ 
  122   vtkResourceFileLocator::GetLibraryPathForSymbolWin32(reinterpret_cast<const void*>(&function)) 
  124 #define vtkGetLibraryPathForSymbol(function)                                                       \ 
  125   vtkResourceFileLocator::GetLibraryPathForSymbolUnix(#function)