15 lines
159 B
C++
15 lines
159 B
C++
#ifndef SIMPLE_LIB_H
|
|
#define SIMPLE_LIB_H
|
|
|
|
#include <QObject>
|
|
|
|
class SimpleLib : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SimpleLib();
|
|
~SimpleLib();
|
|
};
|
|
|
|
#endif
|