From abafb52f37beb5659efc2105ccd1568e1f754898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Ka=CC=88fer?= Date: Thu, 4 Dec 2014 18:29:42 +0100 Subject: make most headers private --- include/mbgl/util/rect.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 include/mbgl/util/rect.hpp (limited to 'include/mbgl/util/rect.hpp') diff --git a/include/mbgl/util/rect.hpp b/include/mbgl/util/rect.hpp deleted file mode 100644 index f5c77f93d1..0000000000 --- a/include/mbgl/util/rect.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef MBGL_UTIL_RECT -#define MBGL_UTIL_RECT - -namespace mbgl { - -template -struct Rect { - inline Rect() {} - inline Rect(T x_, T y_, T w_, T h_) : x(x_), y(y_), w(w_), h(h_) {} - T x = 0, y = 0; - T w = 0, h = 0; - - template - Rect operator *(Number value) const { - return Rect(x * value, y * value, w * value, h * value); - } - - operator bool() const { return w != 0 && h != 0; } -}; -} - -#endif -- cgit v1.2.1