mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 03:29:18 -05:00
15 lines
159 B
Plaintext
15 lines
159 B
Plaintext
#ifndef SIMPLE_LIB_H
|
|
#define SIMPLE_LIB_H
|
|
|
|
#include <QObject>
|
|
|
|
class SimpleLib : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SimpleLib();
|
|
~SimpleLib();
|
|
};
|
|
|
|
#endif
|