mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 20:29:56 -06:00
14 lines
123 B
C++
14 lines
123 B
C++
#ifndef CLASSC_HPP
|
|
#define CLASSC_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class C : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
C();
|
|
};
|
|
|
|
#endif
|