summaryrefslogtreecommitdiffstats
path: root/Project/ConnectionLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/ConnectionLine.h')
-rw-r--r--Project/ConnectionLine.h4
1 files changed, 3 insertions, 1 deletions
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<ConnectionLine*> GetLineChildList() const;
protected:
double m_lineOffset = 0.0;