mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-06 06:29:35 +00:00
22 lines
401 B
C++
22 lines
401 B
C++
#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
|