From 62bd9aa4da85ef87c4d9a9bb7911f8a4e0ac9986 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 18 Dec 2017 23:01:33 +0100 Subject: Moved to QtCreator project with QMake --- src/diagram/IteratorStatement.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/diagram/IteratorStatement.cpp (limited to 'src/diagram/IteratorStatement.cpp') diff --git a/src/diagram/IteratorStatement.cpp b/src/diagram/IteratorStatement.cpp deleted file mode 100644 index 02a7318..0000000 --- a/src/diagram/IteratorStatement.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* - * IteratorStatement.cpp - * - * Created on: Nov 28, 2017 - * Author: naopross - */ - -#include "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"); - } -} -- cgit v1.2.1