2018-06-17 19:59:35 +02:00
|
|
|
#include <iostream>
|
2018-06-08 16:52:00 +02:00
|
|
|
#include "SequenceDiagramCreator.h"
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2018-06-17 19:59:35 +02:00
|
|
|
|
|
|
|
std::cout << "title Hallo Welt" << std::endl;
|
|
|
|
|
2018-06-08 16:52:00 +02:00
|
|
|
auto sdc = new SequenceDiagrammCreator();
|
|
|
|
|
|
|
|
delete sdc;
|
|
|
|
}
|