2018-04-23 21:13:27 +02:00

13 lines
105 B
C++

#include "libA.h"
LibA::LibA(QObject* parent)
: QObject(parent)
{
}
int LibA::foo()
{
return 0;
}