From b3be8e8ef6338bce2106d9c161bf3c7f7f7f9244 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Mon, 6 Mar 2017 18:59:37 -0300 Subject: Connection line fully implemented Bug on delete a chid line and update points --- Project/ConnectionLine.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Project/ConnectionLine.h') diff --git a/Project/ConnectionLine.h b/Project/ConnectionLine.h index b39fe15..350c5d9 100644 --- a/Project/ConnectionLine.h +++ b/Project/ConnectionLine.h @@ -27,7 +27,9 @@ public: virtual void SetType(ConnectionLineType newType) { m_type = newType; } virtual ConnectionLine* GetParentLine() const { return m_parentLine; } - virtual void SetParentLine(ConnectionLine* parent); + virtual bool SetParentLine(ConnectionLine* parent); + + virtual std::vector GetLineChildList() const; protected: double m_lineOffset = 0.0; -- cgit