mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-27 04:44:31 +00:00
- 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).
16 lines
271 B
C++
16 lines
271 B
C++
#ifndef MACHOEXCEPTION_H
|
|
#define MACHOEXCEPTION_H
|
|
|
|
#include "macho_global.h"
|
|
|
|
class EXPORT MachOException
|
|
{
|
|
public:
|
|
MachOException(const std::string&);
|
|
const std::string& getCause() { return cause; }
|
|
private:
|
|
const std::string cause;
|
|
};
|
|
|
|
#endif // MACHOEXCEPTION_H
|