mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
14 lines
166 B
C++
14 lines
166 B
C++
#ifndef OBJECT_UPPER_EXT_H
|
|
#define OBJECT_UPPER_EXT_H
|
|
|
|
#include <QObject>
|
|
|
|
class Object_Upper_Ext_H : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go() {};
|
|
};
|
|
|
|
#endif
|