15 lines
159 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef SIMPLE_LIB_H
#define SIMPLE_LIB_H
2017-09-21 19:03:52 +02:00
#include <QObject>
class SimpleLib : public QObject
2017-07-20 19:35:53 +02:00
{
2017-09-21 19:03:52 +02:00
Q_OBJECT
2017-07-20 19:35:53 +02:00
public:
SimpleLib();
~SimpleLib();
};
#endif