blob: c4eb9f7dc1a937527195baa30191daa3835f8f5c (
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 "liba_export.h"
#include <QObject>
class LIBA_EXPORT LibA : public QObject
{
Q_OBJECT
public:
explicit LibA(QObject* parent = 0);
int foo();
};
#endif
|