mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-27 12:54:31 +00:00
21 lines
443 B
C++
21 lines
443 B
C++
#ifndef UUIDCOMMAND_H
|
|
#define UUIDCOMMAND_H
|
|
|
|
#include "macho_global.h"
|
|
#include "loadcommand.h"
|
|
class EXPORT UuidCommand : public LoadCommand
|
|
{
|
|
public:
|
|
UuidCommand(MachOHeader* header);
|
|
virtual ~UuidCommand();
|
|
virtual unsigned int getSize() const;
|
|
virtual unsigned int getStructureSize() const { return sizeof(command); }
|
|
const uint8_t* getUuid() const;
|
|
|
|
private:
|
|
uuid_command command;
|
|
|
|
};
|
|
|
|
#endif // UUIDCOMMAND_H
|