aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: b4a143bd59c0e80f704f408e302a2ec74affac0d (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
#include "diagram/Structogram.hpp"
#include "ui/Window.hpp"

#include <iostream>
#include <memory>

#include <QApplication>


using namespace samb;

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

    QApplication app(argc, argv);

    Window window;
    window.show(); 

    Structogram st("Example");

    return app.exec();
}