mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-05-02 23:09:33 +00:00
21 lines
469 B
C++
21 lines
469 B
C++
#ifndef RPATHCOMMAND_H
|
|
#define RPATHCOMMAND_H
|
|
|
|
#include "MachO_global.h"
|
|
#include "loadcommand.h"
|
|
|
|
class MACHOSHARED_EXPORT RPathCommand : public LoadCommand
|
|
{
|
|
public:
|
|
RPathCommand(MachOHeader* header);
|
|
virtual ~RPathCommand();
|
|
|
|
virtual unsigned int getSize() const;
|
|
virtual unsigned int getStructureSize() const { return sizeof(command); }
|
|
const char* RPathCommand::getPath() const;
|
|
private:
|
|
rpath_command command;
|
|
};
|
|
|
|
#endif // RPATHCOMMAND_H
|