Files
create/src/CXX/Python2/CxxDebug.hxx
2011-10-10 13:44:52 +00:00

18 lines
258 B
C++

//
// CxxDebug.hxx
//
// Copyright (c) 2008 Barry A. Scott
//
#ifndef __CXX_Debug_hxx
#define __CXX_Debug_hxx
//
// Functions useful when debugging PyCXX
//
#ifdef PYCXX_DEBUG
extern void bpt();
extern void printRefCount( PyObject *obj );
#endif
#endif