2013-02-07 19:35:00 +01:00
|
|
|
|
|
|
|
#ifndef LIBC_H
|
|
|
|
#define LIBC_H
|
|
|
|
|
|
|
|
#include "libc_export.h"
|
|
|
|
|
|
|
|
#include "libB.h"
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <QObject>
|
2013-02-07 19:35:00 +01:00
|
|
|
|
|
|
|
class LIBC_EXPORT LibC : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-05-16 10:34:04 -04:00
|
|
|
explicit LibC(QObject* parent = 0);
|
2013-02-07 19:35:00 +01:00
|
|
|
|
|
|
|
int foo();
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2013-02-07 19:35:00 +01:00
|
|
|
private:
|
|
|
|
LibB b;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|