blob: c4eb9f7dc1a937527195baa30191daa3835f8f5c [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