mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-29 13:54:32 +00:00
18 lines
287 B
C
18 lines
287 B
C
|
#ifndef MACHODEMANGLEEXCEPTION_H
|
||
|
#define MACHODEMANGLEEXCEPTION_H
|
||
|
|
||
|
#include "macho_global.h"
|
||
|
#include "machoexception.h"
|
||
|
|
||
|
|
||
|
class MACHOSHARED_EXPORT MachODemangleException : public MachOException
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
MachODemangleException(const string&);
|
||
|
};
|
||
|
|
||
|
#endif // MACHODEMANGLEEXCEPTION_H
|
||
|
|
||
|
|