cyphesis/rulesets/PythonWrapper.cpp

16 lines
363 B
C++
Raw Normal View History

// This file may be redistributed and modified only under the terms of
// the GNU General Public License (See COPYING for details).
// Copyright (C) 2005 Alistair Riddoch
#include "PythonWrapper.h"
PythonWrapper::PythonWrapper(PyObject * wrapper) : m_wrapper(wrapper)
{
Py_INCREF(m_wrapper);
}
PythonWrapper::~PythonWrapper()
{
Py_DECREF(m_wrapper);
}