Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added boost

File size: 478 bytes
Line 
1// Copyright David Abrahams 2002.
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#include <boost/python/module.hpp>
6#include <boost/python/def.hpp>
7
8#if defined(_AIX) && defined(__EDG_VERSION__) && __EDG_VERSION__ < 245
9# include <iostream> // works around a KCC intermediate code generation bug
10#endif
11
12BOOST_PYTHON_MODULE(minimal_ext)
13{
14}
15
16#include "module_tail.cpp"
Note: See TracBrowser for help on using the repository browser.