mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 18:09:42 -05:00
15 lines
165 B
C
15 lines
165 B
C
|
|
#ifndef MYINTERFACE_H
|
|
#define MYINTERFACE_H
|
|
|
|
#include <QObject>
|
|
|
|
class MyInterface
|
|
{
|
|
|
|
};
|
|
|
|
Q_DECLARE_INTERFACE(MyInterface, "org.cmake.example.MyInterface")
|
|
|
|
#endif
|