5 #ifndef _SPICA_BOUNDS2D_DETAIL_H_
6 #define _SPICA_BOUNDS2D_DETAIL_H_
11 Bounds2_<T>::Bounds2_()
17 Bounds2_<T>::Bounds2_(T minx, T miny, T maxx, T maxy)
18 : posMin_{ minx, miny }
19 , posMax_{ maxx, maxy } {
23 Bounds2_<T>::Bounds2_(
const Bounds2_<T>& b)
24 : posMin_{ b.posMin_ }
25 , posMax_{ b.posMax_ } {
29 Bounds2_<T>::~Bounds2_() {
33 Bounds2_<T>& Bounds2_<T>::operator=(
const Bounds2_<T>& b) {
34 this->posMin_ = b.posMin_;
35 this->posMax_ = b.posMax_;
41 #endif // _SPICA_BOUNDS2D_DETAIL_H_