2013-10-24 11:50:58 +02:00

14 lines
106 B
C++

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