23 lines
240 B
C
Raw Normal View History

2013-03-16 19:13:01 +02:00
#ifndef LIBC_H
#define LIBC_H
#include "libc_export.h"
#include "libB.h"
2016-07-09 11:21:54 +02:00
#include <QObject>
2013-03-16 19:13:01 +02:00
class LIBC_EXPORT LibC : public QObject
{
Q_OBJECT
public:
2016-07-09 11:21:54 +02:00
explicit LibC(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:
LibB b;
};
#endif