cyphesis/tests/stubs/rulesets/stubPythonContext.h

36 lines
973 B
C
Raw Permalink Normal View History

2017-07-03 22:18:31 +02:00
// AUTOGENERATED file, created by the tool generate_stub.py, don't edit!
// If you want to add your own functionality, instead edit the stubPythonContext_custom.h file.
#include "rulesets/PythonContext.h"
#include "stubPythonContext_custom.h"
#ifndef STUB_RULESETS_PYTHONCONTEXT_H
#define STUB_RULESETS_PYTHONCONTEXT_H
#ifndef STUB_PythonContext_PythonContext
//#define STUB_PythonContext_PythonContext
PythonContext::PythonContext()
2017-07-03 23:02:02 +02:00
: m_module(nullptr),m_globals(nullptr),m_locals(nullptr),m_arena(nullptr)
2017-07-03 22:18:31 +02:00
{
}
#endif //STUB_PythonContext_PythonContext
#ifndef STUB_PythonContext_PythonContext_DTOR
//#define STUB_PythonContext_PythonContext_DTOR
PythonContext::~PythonContext()
{
}
#endif //STUB_PythonContext_PythonContext_DTOR
#ifndef STUB_PythonContext_runCommand
//#define STUB_PythonContext_runCommand
std::string PythonContext::runCommand(const std::string &)
{
return "";
}
#endif //STUB_PythonContext_runCommand
#endif