1 //
2 //  CxxDebug.hxx
3 //
4 //  Copyright (c) 2008 Barry A. Scott
5 //
6 #ifndef __CXX_Debug_hxx
7 #define __CXX_Debug_hxx
8 
9 //
10 //  Functions useful when debugging PyCXX
11 //
12 #ifdef PYCXX_DEBUG
13 extern void bpt();
14 extern void printRefCount( PyObject *obj );
15 #endif
16 
17 #endif
18