4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-03 21:19:34 +00:00
2019-03-25 20:13:30 +03:00

16 lines
263 B
C++

#ifndef IGETLIBINFO_H
#define IGETLIBINFO_H
#include "deployutils.h"
class IGetLibInfo
{
public:
IGetLibInfo() = default;
virtual bool getLibInfo(const QString& lib, LibInfo& info) = 0;
virtual ~IGetLibInfo() = default;
};
#endif // IGETLIBINFO_H