fixed: move to util namespace
This commit is contained in:
parent
a340473502
commit
c2d608410b
@ -14,13 +14,15 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
||||
* Copyright 2011, 2014 Danny Robson <danny@nerdcruft.net>
|
||||
*/
|
||||
|
||||
#include "fixed.hpp"
|
||||
|
||||
#include <cmath>
|
||||
|
||||
using namespace util;
|
||||
|
||||
/*
|
||||
* Constructors
|
||||
*/
|
||||
|
10
fixed.hpp
10
fixed.hpp
@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
||||
* Copyright 2011, 2014 Danny Robson <danny@nerdcruft.net>
|
||||
*/
|
||||
|
||||
#ifndef __UTIL_FIXED_HPP
|
||||
@ -24,8 +24,9 @@
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
template <unsigned int INT, unsigned int FRAC>
|
||||
class fixed {
|
||||
namespace util {
|
||||
template <unsigned int INT, unsigned int FRAC>
|
||||
class fixed {
|
||||
public:
|
||||
typedef typename bits_type<INT + FRAC>::uint combined_type;
|
||||
typedef typename bits_type<INT + FRAC>::uint integral_type;
|
||||
@ -60,6 +61,7 @@ class fixed {
|
||||
fixed<INT, FRAC> operator -(integral_type) const;
|
||||
fixed<INT, FRAC> operator *(integral_type) const;
|
||||
fixed<INT, FRAC> operator /(integral_type) const;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif // __UTIL_FIXED_HPP
|
||||
|
Loading…
Reference in New Issue
Block a user