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