summaryrefslogtreecommitdiffstats
path: root/Project/ConnectionLine.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-05-06 18:28:23 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-05-06 18:28:23 -0300
commit74d795cb074b6ae9aa93bcfacee8995d7e6d5945 (patch)
treeea56758240928de036e9632dde2fb94bb634ba08 /Project/ConnectionLine.h
parent412ddd0fa4a6e32651619897c8606d4cbaaa1ffa (diff)
downloadPSP.git-74d795cb074b6ae9aa93bcfacee8995d7e6d5945.tar.gz
PSP.git-74d795cb074b6ae9aa93bcfacee8995d7e6d5945.tar.xz
PSP.git-74d795cb074b6ae9aa93bcfacee8995d7e6d5945.zip
Streight control solver implemented
Buggy, running 2x... Why??
Diffstat (limited to 'Project/ConnectionLine.h')
-rw-r--r--Project/ConnectionLine.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Project/ConnectionLine.h b/Project/ConnectionLine.h
index 8000cfa..98e3098 100644
--- a/Project/ConnectionLine.h
+++ b/Project/ConnectionLine.h
@@ -30,9 +30,6 @@ class ConnectionLine : public ControlElement
virtual std::vector<ConnectionLine*> GetLineChildList() const;
- virtual bool IsSolved() const { return m_solved; }
- virtual SetSolved(bool solved) { m_solved = solved; }
-
virtual double GetValue() const { return m_value; }
virtual void SetValue(double value) { m_value = value; }
@@ -46,7 +43,6 @@ class ConnectionLine : public ControlElement
ConnectionLine* m_parentLine = NULL;
double m_value;
- bool m_solved = false;
};
#endif // CONNECTIONLINE_H