util.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // util.h
  2. //
  3. // Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
  4. //
  5. // Miscellaneous useful functions.
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CELUTIL_UTIL_H_
  12. #define _CELUTIL_UTIL_H_
  13. #include <string>
  14. #include <vector>
  15. #include <iostream>
  16. #include <functional>
  17. // A little trickery to get something like a compile time assert in C++
  18. #define COMPILE_TIME_ASSERT(pred) 
  19.     switch(0){case 0: case pred:;}
  20. #ifdef _WIN32
  21. // The Windows header files define min and max macros. We prefer the min and
  22. // max templates from STL because they don't result in unexpected multiple
  23. // evaluations of arguments. In order to use them, we need to set NOMINMAX
  24. // to prevent namespace pollution by the Windows macros.
  25. #define NOMINMAX
  26. #endif
  27. // gettext / libintl setup
  28. #define _(string) gettext (string)
  29. #ifdef _WIN32
  30. #include "libintl.h"
  31. #else
  32. #ifndef TARGET_OS_MAC
  33. #include <libintl.h>
  34. #endif /* TARGET_OS_MAC */
  35. #endif
  36. extern int compareIgnoringCase(const std::string& s1, const std::string& s2);
  37. extern int compareIgnoringCase(const std::string& s1, const std::string& s2, int n);
  38. extern std::string LocaleFilename(const std::string & filename);
  39. class CompareIgnoringCasePredicate : public std::binary_function<std::string, std::string, bool>
  40. {
  41.  public:
  42.     bool operator()(const std::string&, const std::string&) const;
  43. };
  44. template <class T> struct printlineFunc : public std::unary_function<T, void>
  45. {
  46.     printlineFunc(std::ostream& o) : out(o) {};
  47.     void operator() (T x) { out << x << 'n'; };
  48.     std::ostream& out;
  49. };
  50. template <class T> struct deleteFunc : public std::unary_function<T, void>
  51. {
  52.     deleteFunc() {};
  53.     void operator() (T x) { delete x; };
  54.     int dummy;
  55. };
  56. #endif // _CELUTIL_UTIL_H_