git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
18 lines
258 B
C++
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
|