mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-28 21:34:31 +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
|