mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-28 21:34:31 +00:00
18 lines
275 B
C++
18 lines
275 B
C++
#ifndef MACHODEMANGLEEXCEPTION_H
|
|
#define MACHODEMANGLEEXCEPTION_H
|
|
|
|
#include "macho_global.h"
|
|
#include "machoexception.h"
|
|
|
|
|
|
class EXPORT MachODemangleException : public MachOException
|
|
{
|
|
|
|
public:
|
|
MachODemangleException(const string&);
|
|
};
|
|
|
|
#endif // MACHODEMANGLEEXCEPTION_H
|
|
|
|
|