comparison exceptions.h @ 415:9bf8ba050122

Replace all remaining Boost.Python references * exceptions.h (pytave::error_alreadY_set): New exception placeholder class. * __py_struct_from_dict__.cc, oct-py-eval.cc, oct-py-types.cc, oct-py-util.cc, pycall.cc, pyeval.cc, pyexec.cc: Use it in place of boost::python. Remove all #includes of Boost headers.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 21:48:07 -0700
parents 09a1acb81d8b
children 8247f298fd16
comparison
equal deleted inserted replaced
414:ee6afd27a78c 415:9bf8ba050122
81 81
82 private: 82 private:
83 std::string error; 83 std::string error;
84 }; 84 };
85 85
86 class error_already_set
87 {
88 };
89
86 std::string fetch_exception_message (void); 90 std::string fetch_exception_message (void);
87 } 91 }
88 92
89 #endif 93 #endif