| 1 | // LAF Gfx Library | 
| 2 | // Copyright (C) 2001-2016 David Capello | 
| 3 | // | 
| 4 | // This file is released under the terms of the MIT license. | 
| 5 | // Read LICENSE.txt for more information. | 
| 6 |  | 
| 7 | #ifndef GFX_FWD_H_INCLUDED | 
| 8 | #define GFX_FWD_H_INCLUDED | 
| 9 | #pragma once | 
| 10 |  | 
| 11 | namespace gfx { | 
| 12 |  | 
| 13 | template<typename T> class BorderT; | 
| 14 | template<typename T> class ClipT; | 
| 15 | template<typename T> class PointT; | 
| 16 | template<typename T> class RectT; | 
| 17 | template<typename T> class SizeT; | 
| 18 |  | 
| 19 | typedef BorderT<int> Border; | 
| 20 | typedef ClipT<int> Clip; | 
| 21 | typedef PointT<int> Point; | 
| 22 | typedef RectT<int> Rect; | 
| 23 | typedef SizeT<int> Size; | 
| 24 |  | 
| 25 | class Region; | 
| 26 |  | 
| 27 | } // namespace gfx | 
| 28 |  | 
| 29 | #endif | 
| 30 |  |