Last change
on this file since 45 was
29,
checked in by landauf, 17 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
478 bytes
|
Rev | Line | |
---|
[29] | 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 | |
---|
| 12 | BOOST_PYTHON_MODULE(minimal_ext) |
---|
| 13 | { |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | #include "module_tail.cpp" |
---|
Note: See
TracBrowser
for help on using the repository browser.