C_CPP/11_PUTT/05_OO_b/SequenceDiagramCreator.h

14 lines
225 B
C
Raw Normal View History

2018-06-08 16:52:00 +02:00
//
// Created by JThei on 02.06.2018.
//
class SequenceDiagrammCreator {
2018-06-17 19:59:35 +02:00
private:
int localVar;
2018-06-08 16:52:00 +02:00
public:
SequenceDiagrammCreator();
~SequenceDiagrammCreator();
2018-06-17 19:59:35 +02:00
void test(int var);
static int staticVar;
2018-06-08 16:52:00 +02:00
};