4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-02 12:39:35 +00:00
EndrII ee5c18f121 update copyrigh
update zip lib
update QuasarApp lib
2021-01-05 13:17:11 +03:00

29 lines
648 B
C++

//#
//# Copyright (C) 2018-2021 QuasarApp.
//# 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.
//#
#ifndef ELF_H
#define ELF_H
#include "../qtTools/src/shared/winutils/elfreader.h"
#include "igetlibinfo.h"
class ELF : public IGetLibInfo
{
private:
QByteArrayList getDynamicString(ElfReader &reader) const;
int getVersionOfTag(const QByteArray &tag, QByteArray &source) const;
public:
ELF();
bool getLibInfo(const QString &lib, LibInfo &info) const override;
};
#endif // ELF_H