aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram/Structogram.cpp
blob: dae902894820581551393b4c6514ad47395d10dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Structogram.cpp
 *
 *  Created on: Nov 14, 2017
 *      Author: naopross
 */

#include "../diagram/Structogram.h"
#include <memory>


namespace samb {

Structogram::Structogram(std::string title): m_title(title) {

}

Structogram::~Structogram() {

}

const std::list<Statement>& Structogram::getStatements() const {
	return m_statements;
}


} /* namespace structograms */