blob: a8ca209076be4131265cef77f9ab3c75f1958833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef LIBA_H
#define LIBA_H
#include <QObject>
#include "liba_export.h"
class LIBA_EXPORT LibA : public QObject
{
Q_OBJECT
public:
explicit LibA(QObject* parent = 0);
int foo();
};
#endif
|