4
0
mirror of https://github.com/QuasarApp/macdependency.git synced 2025-04-28 13:24:32 +00:00

32 lines
792 B
C
Raw Permalink Normal View History

#ifndef LOADCOMMAND_H
#define LOADCOMMAND_H
#include "macho_global.h"
class MachOHeader;
class MachOFile;
2009-09-29 15:01:48 +00:00
class EXPORT LoadCommand
{
protected:
LoadCommand(MachOHeader* header);
public:
static LoadCommand* getLoadCommand(unsigned int cmd, MachOHeader* header);
virtual ~LoadCommand();
virtual unsigned int getSize() const = 0;
// is smaller than getSize() because it only returns the size of the command structure
// only necessary if command uses getLcData()
virtual unsigned int getStructureSize() const { return 0; }
protected:
MachOHeader* header;
MachOFile& file;
const unsigned int offset;
const char* getLcDataString(unsigned int offset) const;
private:
mutable char* lcData;
void readLcData() const;
};
#endif // LOADCOMMAND_H