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