macdependency/MachO/machodemangleexception.h
Mike Lischke 972fcb3094 Overhaul of the application to avoid it crashing on macOS Sierra.
- Applied all recommended XCode (8) settings.
- Removed boost and replaced that code by standard functions.
- Implemented name mangling via abi::__cxa_demangle instead of running an external process to use c++filt.
- Enabled C++11. Min deployment target is now OSX 10.7.
- Some code clean up (e.g. formatting, std namespace).
2016-11-19 16:23:39 +01:00

18 lines
281 B
C++

#ifndef MACHODEMANGLEEXCEPTION_H
#define MACHODEMANGLEEXCEPTION_H
#include "macho_global.h"
#include "machoexception.h"
class EXPORT MachODemangleException : public MachOException
{
public:
MachODemangleException(const std::string&);
};
#endif // MACHODEMANGLEEXCEPTION_H