blob: 7eaab2afbf709b4d473010a3a2272d79ca967bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ExternDot_HPP
#define ExternDot_HPP
#include <QObject>
// Object source includes externally generated .moc file
class ExternDot : public QObject
{
Q_OBJECT
public:
ExternDot();
~ExternDot();
};
#endif
|