2019-09-23 16:46:57 +03:00
|
|
|
//#
|
2021-01-05 13:17:11 +03:00
|
|
|
//# Copyright (C) 2018-2021 QuasarApp.
|
2019-09-23 16:46:57 +03:00
|
|
|
//# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
|
|
|
|
2019-03-18 10:33:03 +03:00
|
|
|
#ifndef IGETLIBINFO_H
|
|
|
|
#define IGETLIBINFO_H
|
|
|
|
|
2019-09-03 18:15:05 +03:00
|
|
|
#include "deploycore.h"
|
2019-04-05 14:23:42 +03:00
|
|
|
#include "libinfo.h"
|
2019-03-18 10:33:03 +03:00
|
|
|
|
|
|
|
class IGetLibInfo
|
|
|
|
{
|
|
|
|
public:
|
2019-03-18 17:12:40 +03:00
|
|
|
IGetLibInfo() = default;
|
2019-08-31 22:22:26 +03:00
|
|
|
virtual bool getLibInfo(const QString& lib, LibInfo& info) const = 0;
|
2019-03-18 17:12:40 +03:00
|
|
|
virtual ~IGetLibInfo() = default;
|
2019-03-18 10:33:03 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // IGETLIBINFO_H
|