Synopsis - Cross-Reference
File: /Synopsis/Parsers/Cxx/exception.hh1// 2// Copyright (C) 2008 Stefan Seefeld 3// All rights reserved. 4// Licensed to the public under the terms of the GNU LGPL (>= 2), 5// see the file COPYING for details. 6// 7 8#ifndef exception_hh_ 9#define exception_hh_ 10 11#include <Python.h> 12#include <exception> 13 14class py_error_already_set : std::exception {}; 15 16#endif