blob: 03ad1e006e2fd1717f7463b12638809d145ab7e2 [file] [log] [blame]
#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