mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 19:24:33 +00:00
18 lines
236 B
C
18 lines
236 B
C
|
#ifndef ELF_H
|
||
|
#define ELF_H
|
||
|
#include "../qtTools/src/windeployqt/elfreader.h"
|
||
|
|
||
|
#include "igetlibinfo.h"
|
||
|
|
||
|
|
||
|
class ELF : public IGetLibInfo
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
ELF();
|
||
|
|
||
|
bool getLibInfo(const QString &lib, LibInfo &info);
|
||
|
};
|
||
|
|
||
|
#endif // ELF_H
|