2014-08-03 19:52:23 +02:00

14 lines
106 B
C++

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