aboutsummaryrefslogtreecommitdiffstats
path: root/src/diagram/Structogram.hpp
blob: 223414255faf74d0ea34b9bd0988bdff317e5eba (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
28
29
30
31
32
/*
 * Structogram.h
 *
 *  Created on: Nov 14, 2017
 *      Author: naopross
 */

#ifndef STRUCTOGRAM_H_
#define STRUCTOGRAM_H_

#include <iostream>
#include <list>
#include "../diagram/Statement.h"

namespace samb {

/* object that holds statements */
class Structogram {
private:
	std::list<Statement> m_statements;
	std::string m_title;

public:
	Structogram(std::string title);
	virtual ~Structogram();

	const std::list<Statement>& getStatements() const;
};

} /* namespace structograms */

#endif /* STRUCTOGRAM_H_ */