libA.cpp 105 B

123456789101112
  1. #include "libA.h"
  2. LibA::LibA(QObject* parent)
  3. : QObject(parent)
  4. {
  5. }
  6. int LibA::foo()
  7. {
  8. return 0;
  9. }