diff options
author | crupest <crupest@outlook.com> | 2020-03-18 21:40:10 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-03-18 21:40:10 +0800 |
commit | 068714c0f2fe7ab003462e5483f9944b0bf2f8e0 (patch) | |
tree | a16aea1a4414c2763e2d82eabd9bf68d4e44c7fc /include/cru/platform/graph/base.hpp | |
parent | b129c5a144dfb116082689ffaaa9ac78e2403656 (diff) | |
download | cru-068714c0f2fe7ab003462e5483f9944b0bf2f8e0.tar.gz cru-068714c0f2fe7ab003462e5483f9944b0bf2f8e0.tar.bz2 cru-068714c0f2fe7ab003462e5483f9944b0bf2f8e0.zip |
...
Diffstat (limited to 'include/cru/platform/graph/base.hpp')
-rw-r--r-- | include/cru/platform/graph/base.hpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/cru/platform/graph/base.hpp b/include/cru/platform/graph/base.hpp index 0b011262..002c2f51 100644 --- a/include/cru/platform/graph/base.hpp +++ b/include/cru/platform/graph/base.hpp @@ -3,11 +3,19 @@ #include "../matrix.hpp" #include "../resource.hpp" -#include "fwd.hpp" - #include <memory> namespace cru::platform::graph { +// forward declarations +struct IGraphFactory; +struct IBrush; +struct ISolidColorBrush; +struct IFont; +struct IGeometry; +struct IGeometryBuilder; +struct IPainter; +struct ITextLayout; + struct TextHitTestResult { int position; bool trailing; |