]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/canvas_fwd.hxx
Commited too fast...
[simgear.git] / simgear / canvas / canvas_fwd.hxx
1 // Canvas forward declarations
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #ifndef SG_CANVAS_FWD_HXX_
20 #define SG_CANVAS_FWD_HXX_
21
22 #include <simgear/props/propsfwd.hxx>
23 #include <simgear/structure/SGWeakPtr.hxx>
24
25 #include <osg/ref_ptr>
26 #include <osgText/Font>
27
28 #include <boost/function.hpp>
29 #include <boost/shared_ptr.hpp>
30 #include <boost/weak_ptr.hpp>
31
32 #include <vector>
33
34 namespace simgear
35 {
36 namespace canvas
37 {
38
39   class Canvas;
40   typedef boost::shared_ptr<Canvas> CanvasPtr;
41   typedef boost::weak_ptr<Canvas> CanvasWeakPtr;
42
43   typedef osg::ref_ptr<osgText::Font> FontPtr;
44
45   class Placement;
46   typedef boost::shared_ptr<Placement> PlacementPtr;
47   typedef std::vector<PlacementPtr> Placements;
48   typedef boost::function<Placements( const SGPropertyNode*,
49                                       CanvasPtr )> PlacementFactory;
50
51   class SystemAdapter;
52   typedef boost::shared_ptr<SystemAdapter> SystemAdapterPtr;
53
54 } // namespace canvas
55 } // namespace simgear
56
57
58 #endif /* SG_CANVAS_FWD_HXX_ */