aboutsummaryrefslogtreecommitdiffstats
path: root/include/diagram/iteratorstatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/diagram/iteratorstatement.h')
-rw-r--r--include/diagram/iteratorstatement.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/diagram/iteratorstatement.h b/include/diagram/iteratorstatement.h
deleted file mode 100644
index e7fbba0..0000000
--- a/include/diagram/iteratorstatement.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef DIAGRAM_ITERATORSTATEMENT_H
-#define DIAGRAM_ITERATORSTATEMENT_H
-
-#include "diagram/statement.h"
-#include "diagram/scope.h"
-
-#include <QString>
-
-namespace samb {
-
-/* Implementation for Statement::WHILE Statement::UNTIL
- */
-class IteratorStatement : public Statement
-{
-public:
- IteratorStatement(Type t, const QString &condition, pointer next);
-
- /* accessors */
- Scope& inner() { return _inner; }
-
- inline const QString& condition() const { return text(); }
- inline void condition(const QString &condition) { return text(condition); }
-
-private:
- Scope _inner;
-};
-
-} /* namespace samb */
-
-#endif /* DIAGRAM_ITERATORSTATEMENT_H */