coord/fwd: use fwd header for ops
This commit is contained in:
parent
dfdd9421cd
commit
efb2657798
@ -18,10 +18,11 @@
|
|||||||
#define __UTIL_COORD_FWD_HPP
|
#define __UTIL_COORD_FWD_HPP
|
||||||
|
|
||||||
namespace util {
|
namespace util {
|
||||||
template <size_t S, typename T> struct colour;
|
template <size_t,typename> struct colour;
|
||||||
template <size_t S, typename T> struct extent;
|
template <size_t,typename> struct extent;
|
||||||
template <size_t S, typename T> struct point;
|
template <size_t,typename> struct point;
|
||||||
template <size_t S, typename T> struct vector;
|
template <size_t,typename> struct quaternion;
|
||||||
|
template <size_t,typename> struct vector;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
#ifndef __UTIL_COORDS_OPS
|
#ifndef __UTIL_COORDS_OPS
|
||||||
#define __UTIL_COORDS_OPS
|
#define __UTIL_COORDS_OPS
|
||||||
|
|
||||||
|
#include "./fwd.hpp"
|
||||||
|
|
||||||
#include "../preprocessor.hpp"
|
#include "../preprocessor.hpp"
|
||||||
#include "../maths.hpp"
|
#include "../maths.hpp"
|
||||||
#include "../types/bits.hpp"
|
#include "../types/bits.hpp"
|
||||||
@ -25,13 +27,6 @@
|
|||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
namespace util {
|
namespace util {
|
||||||
// forward declerations for traits
|
|
||||||
template <size_t,typename> struct point;
|
|
||||||
template <size_t,typename> struct extent;
|
|
||||||
template <size_t,typename> struct vector;
|
|
||||||
template <size_t,typename> struct colour;
|
|
||||||
template <size_t,typename> struct quaternion;
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////
|
||||||
// operation traits
|
// operation traits
|
||||||
namespace coord {
|
namespace coord {
|
||||||
|
Loading…
Reference in New Issue
Block a user