#ifndef SIMPLE_LIB_H #define SIMPLE_LIB_H #include <QObject> class SimpleLib : public QObject { Q_OBJECT public: SimpleLib(); ~SimpleLib(); }; #endif