libA.h 202 B

123456789101112131415161718
  1. #ifndef LIBA_H
  2. #define LIBA_H
  3. #include "liba_export.h"
  4. #include <QObject>
  5. class LIBA_EXPORT LibA : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit LibA(QObject* parent = 0);
  10. int foo();
  11. };
  12. #endif