2020-02-01 23:06:01 +01:00

16 lines
218 B
C++

#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