mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-05-17 05:19:33 +00:00
16 lines
278 B
C
16 lines
278 B
C
|
#ifndef GENERICCOMMAND_H
|
||
|
#define GENERICCOMMAND_H
|
||
|
|
||
|
#include "loadcommand.h"
|
||
|
|
||
|
class GenericCommand : public LoadCommand
|
||
|
{
|
||
|
public:
|
||
|
GenericCommand(MachOHeader* header);
|
||
|
virtual unsigned int getSize() const;
|
||
|
private:
|
||
|
load_command command;
|
||
|
};
|
||
|
|
||
|
#endif // GENERICCOMMAND_H
|