You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
18 lines
373 B
6 years ago
|
#ifndef TESTINTERFACE_H
|
||
|
#define TESTINTERFACE_H
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
|
||
|
class TestInterface
|
||
|
{
|
||
|
Q_DISABLE_COPY(TestInterface)
|
||
|
public:
|
||
|
inline TestInterface() = default;
|
||
|
virtual inline ~TestInterface() = default;
|
||
|
};
|
||
|
|
||
|
#define TestInterfaceIId "de.skycoder42.qtmvvm.core.tests.TestInterface"
|
||
|
Q_DECLARE_INTERFACE(TestInterface, TestInterfaceIId)
|
||
|
|
||
|
#endif // TESTINTERFACE_H
|