CQtDeployer/Deploy/igetlibinfo.h
2019-03-18 10:33:03 +03:00

18 lines
245 B
C++

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