/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2011-2014 Danny Robson */ #ifndef __UTIL_FIXED_HPP #define __UTIL_FIXED_HPP #include "types/bits.hpp" #include namespace util { template class fixed { public: typedef typename std::conditional< std::is_signed::value, typename bits_type::sint, typename bits_type::uint >::type native_t; typedef native_t integer_t; explicit fixed (double); explicit fixed (float); explicit fixed (native_t); double to_double (void) const; float to_float (void) const; integer_t to_integer (void) const; native_t to_native (void) const; static fixed from_native (native_t); static integer_t to_integer (native_t); fixed& operator +=(const fixed); fixed& operator -=(const fixed); fixed& operator *=(const fixed); fixed& operator /=(const fixed); fixed operator +(const fixed) const; fixed operator -(const fixed) const; fixed operator *(const fixed) const; fixed operator /(const fixed) const; fixed& operator +=(integer_t); fixed& operator -=(integer_t); fixed& operator *=(integer_t); fixed& operator /=(integer_t); fixed operator +(integer_t) const; fixed operator -(integer_t) const; fixed operator *(integer_t) const; fixed operator /(integer_t) const; private: fixed () = default; native_t m_value; }; template bool operator== (util::fixed, util::fixed); template bool operator!= (util::fixed, util::fixed); template bool operator< (util::fixed, util::fixed); template bool operator<= (util::fixed, util::fixed); template bool operator> (util::fixed, util::fixed); template bool operator>= (util::fixed, util::fixed); template std::ostream& operator<< (std::ostream&, fixed); } #endif // __UTIL_FIXED_HPP