From 341fd025a924f779acebcfa0ffcf07f46f8240c9 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Wed, 14 Dec 2016 21:12:05 -0200 Subject: Many elements open implemented --- Project/Element.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Project/Element.h') diff --git a/Project/Element.h b/Project/Element.h index cdad147..512fc8f 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -98,6 +98,7 @@ public: void ShowPickbox(bool showPickbox = true) { m_showPickbox = showPickbox; } void SetBorderSize(double borderSize) { m_borderSize = borderSize; } void SetOnline(bool online = true); + virtual void SetPointList(std::vector pointList) { m_pointList = pointList; } // Getters wxRect2DDouble GetRect() const { return m_rect; } wxPoint2DDouble GetPosition() const { return m_position; } -- cgit