one.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // Boost.Units - A C++ library for zero-overhead dimensional analysis and
  2. // unit/quantity manipulation and conversion
  3. //
  4. // Copyright (C) 2003-2008 Matthias Christian Schabel
  5. // Copyright (C) 2008 Steven Watanabe
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See
  8. // accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_UNITS_DETAIL_ONE_HPP
  11. #define BOOST_UNITS_DETAIL_ONE_HPP
  12. #include <boost/units/operators.hpp>
  13. namespace boost {
  14. namespace units {
  15. struct one { one() {} };
  16. // workaround for pathscale.
  17. inline one make_one() {
  18. one result;
  19. return(result);
  20. }
  21. template<class T>
  22. struct multiply_typeof_helper<one, T>
  23. {
  24. typedef T type;
  25. };
  26. template<class T>
  27. struct multiply_typeof_helper<T, one>
  28. {
  29. typedef T type;
  30. };
  31. template<>
  32. struct multiply_typeof_helper<one, one>
  33. {
  34. typedef one type;
  35. };
  36. template<class T>
  37. inline T operator*(const one&, const T& t)
  38. {
  39. return(t);
  40. }
  41. template<class T>
  42. inline T operator*(const T& t, const one&)
  43. {
  44. return(t);
  45. }
  46. inline one operator*(const one&, const one&)
  47. {
  48. one result;
  49. return(result);
  50. }
  51. template<class T>
  52. struct divide_typeof_helper<T, one>
  53. {
  54. typedef T type;
  55. };
  56. template<class T>
  57. struct divide_typeof_helper<one, T>
  58. {
  59. typedef T type;
  60. };
  61. template<>
  62. struct divide_typeof_helper<one, one>
  63. {
  64. typedef one type;
  65. };
  66. template<class T>
  67. inline T operator/(const T& t, const one&)
  68. {
  69. return(t);
  70. }
  71. template<class T>
  72. inline T operator/(const one&, const T& t)
  73. {
  74. return(1/t);
  75. }
  76. inline one operator/(const one&, const one&)
  77. {
  78. one result;
  79. return(result);
  80. }
  81. template<class T>
  82. inline bool operator>(const boost::units::one&, const T& t) {
  83. return(1 > t);
  84. }
  85. template<class T>
  86. T one_to_double(const T& t) { return t; }
  87. inline double one_to_double(const one&) { return 1.0; }
  88. template<class T>
  89. struct one_to_double_type { typedef T type; };
  90. template<>
  91. struct one_to_double_type<one> { typedef double type; };
  92. } // namespace units
  93. } // namespace boost
  94. #endif