/trunk/Lib/guile/std_except.i

# · Swig · 12 lines · 10 code · 2 blank · 0 comment · 0 complexity · c0f970c665ef0b6ab59b22824947f9bc MD5 · raw file

  1. // TODO: STL exception handling
  2. // Note that the generic std_except.i file did not work
  3. %{
  4. #include <stdexcept>
  5. %}
  6. namespace std {
  7. %ignore exception;
  8. struct exception {
  9. };
  10. }