simpleLib.hpp.in 159 B

1234567891011121314
  1. #ifndef SIMPLE_LIB_H
  2. #define SIMPLE_LIB_H
  3. #include <QObject>
  4. class SimpleLib : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. SimpleLib();
  9. ~SimpleLib();
  10. };
  11. #endif