Utilities.h 793 B

12345678910111213141516171819202122232425262728293031323334
  1. //-----------------------------------------------------------------------------
  2. // (c) 2005 by Basler Vision Technologies
  3. // Section: Vision Components
  4. // Project: GenICam
  5. // Author: Fritz Dierks
  6. // $Header$
  7. //-----------------------------------------------------------------------------
  8. /*!
  9. \file
  10. \brief helper functions
  11. */
  12. #ifndef _LOG4CPP_UTILITIES_H
  13. #define _LOG4CPP_UTILITIES_H
  14. #include <string>
  15. #if defined (_MSC_VER)
  16. #include <Windows.h>
  17. #endif
  18. #if defined(UNDER_RTSS)
  19. #include "RTSSUtilities.h"
  20. #endif // defined(UNDER_RTSS)
  21. #include <log4cpp/Portability.hh>
  22. LOG4CPP_NS_BEGIN
  23. // replaces entries of type $(VARIABLE) by the corresponding environment variable's content
  24. bool ReplaceEnvironmentVariables(std::string &Buffer);
  25. LOG4CPP_NS_END
  26. #endif // _LOG4CPP_UTILITIES_H