aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/graphics
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-10-12 17:47:30 +0800
committercrupest <crupest@outlook.com>2023-10-12 17:47:30 +0800
commit0ec90627298b8b7bdc74a3993ca58f1dde14dc26 (patch)
tree6bd6d25debf39bf969864b75599e824497b094a6 /include/cru/platform/graphics
parent9a077caa6d3f7eb8255ae68916dccac9b50a4333 (diff)
downloadcru-0ec90627298b8b7bdc74a3993ca58f1dde14dc26.tar.gz
cru-0ec90627298b8b7bdc74a3993ca58f1dde14dc26.tar.bz2
cru-0ec90627298b8b7bdc74a3993ca58f1dde14dc26.zip
...
Diffstat (limited to 'include/cru/platform/graphics')
-rw-r--r--include/cru/platform/graphics/SvgGeometry.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/include/cru/platform/graphics/SvgGeometry.h b/include/cru/platform/graphics/SvgGeometry.h
index 281158f0..742a68ca 100644
--- a/include/cru/platform/graphics/SvgGeometry.h
+++ b/include/cru/platform/graphics/SvgGeometry.h
@@ -3,8 +3,15 @@
#include "Geometry.h"
namespace cru::platform::graphics {
-class CRU_PLATFORM_GRAPHICS_API SvgGeometryBuilder : public virtual IGeometryBuilder {
+class CRU_PLATFORM_GRAPHICS_API SvgGeometryBuilder
+ : public Object,
+ public virtual IGeometryBuilder {
+ public:
+ SvgGeometryBuilder();
-};
-}
+ ~SvgGeometryBuilder() override;
+ private:
+ String current_;
+};
+} // namespace cru::platform::graphics