blob: 517d26e9f2f79416b7c550a21bb082098cf2eab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "diagram/structogram.h"
using namespace samb;
Structogram::Structogram(const QString &title, const QString &author) :
Scope(title), _author(author)
{
}
Structogram::~Structogram()
{
}
|