libA.cpp 106 B

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