aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram/Statement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/diagram/Statement.cpp')
-rw-r--r--src/diagram/Statement.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/diagram/Statement.cpp b/src/diagram/Statement.cpp
deleted file mode 100644
index 711bcf4..0000000
--- a/src/diagram/Statement.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Statement.cpp
- *
- * Created on: Nov 23, 2017
- * Author: naopross
- */
-
-#include "Statement.hpp"
-
-using namespace samb;
-
-/* Statement */
-
-Statement::Statement(Type t, const std::string& text): type(t), m_text(text), m_next(nullptr) {}
-Statement::Statement(Type t, const std::string& text, Statement::pointer p): type(t), m_text(text), m_next(p) {}
-
-Statement::~Statement() {}
-
-bool Statement::operator==(const Statement& other) const {
- // comparison by pointers
- return (this == &other);
-}
-