cyphesis/rulesets/PythonArithmeticScript.cpp
Al Riddoch e6dfe4b54c 2006-01-08 Al Riddoch <alriddoch@zepler.org>
* rulesets/ArithmeticScript.h, rulesets/PythonArithmeticScript.h,
	  rulesets/PythonArithmeticScript.cpp: Stub classes for handling
	  adding a script to handle Statistics.
2006-01-08 05:26:58 +00:00

15 lines
388 B
C++

// 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 <Python.h>
#include "PythonArithmeticScript.h"
PythonArithmeticScript::PythonArithmeticScript(PyObject * o) : m_script(o)
{
}
PythonArithmeticScript::~PythonArithmeticScript()
{
Py_DECREF(m_script);
}