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

22 lines
239 B
C++

#ifndef LIBB_H
#define LIBB_H
#include "libb_export.h"
#include <QObject>
#include "libA.h"
class LIBB_EXPORT LibB : public QObject
{
Q_OBJECT
public:
explicit LibB(QObject *parent = 0);
int foo();
private:
LibA a;
};
#endif