13 lines
105 B
C++
Raw Normal View History

2013-03-16 19:13:01 +02:00
#include "libA.h"
2016-07-09 11:21:54 +02:00
LibA::LibA(QObject* parent)
2013-03-16 19:13:01 +02:00
: QObject(parent)
{
}
int LibA::foo()
{
return 0;
}