4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-09 07:59:37 +00:00

16 lines
259 B
C++

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