aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 83bba4c60364a60290cd034a8227ff7dafeddd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "diagram/Structogram.hpp"

#include <iostream>
#include <memory>


using namespace samb;

int main(int argc, char *argv[]) {

	Structogram st("Example");

	return 0;
}