aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram/iteratorstatement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/diagram/iteratorstatement.cpp')
-rw-r--r--src/diagram/iteratorstatement.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/diagram/iteratorstatement.cpp b/src/diagram/iteratorstatement.cpp
new file mode 100644
index 0000000..675d8eb
--- /dev/null
+++ b/src/diagram/iteratorstatement.cpp
@@ -0,0 +1,16 @@
+#include "diagram/IteratorStatement.hpp"
+
+using namespace samb;
+
+IteratorStatement::IteratorStatement(Statement::Type t, const std::string& condition, Statement::pointer next)
+ : Statement(t, condition, next), m_inner("") {
+
+ switch (t) {
+ case Statement::Type::WHILE:
+ case Statement::Type::UNTIL:
+ break;
+
+ default:
+ throw std::invalid_argument("IteratorStatement can only be of type WHILE or UNTIL");
+ }
+}