2020-02-01 23:06:01 +01:00
|
|
|
#ifndef ExternDot_HPP
|
|
|
|
#define ExternDot_HPP
|
2018-01-26 17:06:56 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
// Object source includes externally generated .moc file
|
2020-02-01 23:06:01 +01:00
|
|
|
class ExternDot : public QObject
|
2018-01-26 17:06:56 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-02-01 23:06:01 +01:00
|
|
|
ExternDot();
|
|
|
|
~ExternDot();
|
2018-01-26 17:06:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|