diff --git a/Label.cpp b/Label.cpp new file mode 100644 index 0000000..90daa2e --- /dev/null +++ b/Label.cpp @@ -0,0 +1,6 @@ +#include "Label.h" + +Label::Label() +{ + +} diff --git a/Label.h b/Label.h new file mode 100644 index 0000000..9666a62 --- /dev/null +++ b/Label.h @@ -0,0 +1,11 @@ +#ifndef LABEL_H +#define LABEL_H + + +class Label : public QGraphicsTextItem +{ +public: + Label(); +}; + +#endif // LABEL_H diff --git a/eAlignMode.h b/eAlignMode.h new file mode 100644 index 0000000..fa37175 --- /dev/null +++ b/eAlignMode.h @@ -0,0 +1,4 @@ +#ifndef EALIGNMODE_H +#define EALIGNMODE_H + +#endif // EALIGNMODE_H