Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/python/test/crossmod_exception_b.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

  • Property svn:executable set to *
File size: 448 bytes
Line 
1// Copyright (C) 2003 Rational Discovery LLC
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6#include <boost/python.hpp>
7
8namespace python = boost::python;
9
10void tossit(){
11  PyErr_SetString(PyExc_IndexError,"b-blah!");
12  throw python::error_already_set();
13}
14
15BOOST_PYTHON_MODULE(crossmod_exception_b)
16{
17    python::def("tossit",tossit);
18}
Note: See TracBrowser for help on using the repository browser.