Changeset 19512
- Timestamp:
- 11/14/06 13:37:48 (2 years ago)
- Files:
-
- PyJuggler/branches/1.0/pyjutil/InterpreterGuard.h (modified) (1 diff)
- PyJuggler/branches/1.0/pyjutil/wrap_python.h (copied) (copied from PyJuggler/trunk/pyjutil/wrap_python.h) (3 diffs, 2 props)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PyJuggler/branches/1.0/pyjutil/InterpreterGuard.h
r18527 r19512 6 6 #define _PYJUGGLER_INTERPRETER_GUARD_H_ 7 7 8 #include <Python.h>8 #include "wrap_python.h" 9 9 10 10 #include <vpr/vpr.h> PyJuggler/branches/1.0/pyjutil/wrap_python.h
- Property svn:eol-style set to native
- Property svn:executable deleted
r19068 r19512 5 5 // Based on: boost/python/detail/wrap_python.hpp from Boost.Python libary. 6 6 // 7 // NOTE: If you are using boost.python just go ahead and include the file from boost.python8 // before including anything from this library.7 // NOTE: If you are using Boost.Python just go ahead and include the file from 8 // Boost.python before including anything from this library. 9 9 10 10 // This file serves as a wrapper around <Python.h> which allows it to be … … 20 20 #ifdef _DEBUG 21 21 # ifndef PYJUTIL_DEBUG_PYTHON 22 # ifdef _MSC_VER 22 # ifdef _MSC_VER 23 23 // VC8.0 will complain if system headers are #included both with 24 24 // and without _DEBUG defined, so we have to #include all the … … 61 61 # pragma warning(disable:4786) 62 62 #endif 63 64
