mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
18 lines
245 B
C++
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
|