2013-03-16 19:13:01 +02:00
|
|
|
|
|
|
|
#ifndef LIBB_H
|
|
|
|
#define LIBB_H
|
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include <QObject>
|
2013-03-16 19:13:01 +02:00
|
|
|
|
|
|
|
#include "libA.h"
|
2020-02-01 23:06:01 +01:00
|
|
|
#include "libb_export.h"
|
2013-03-16 19:13:01 +02:00
|
|
|
|
|
|
|
class LIBB_EXPORT LibB : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-07-09 11:21:54 +02:00
|
|
|
explicit LibB(QObject* parent = 0);
|
2013-03-16 19:13:01 +02:00
|
|
|
|
|
|
|
int foo();
|
2016-07-09 11:21:54 +02:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
private:
|
|
|
|
LibA a;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|