39 lines
693 B
C++
39 lines
693 B
C++
#pragma once
|
|
|
|
#include "../eterLib/StdAfx.h"
|
|
#include "../eterGrnLib/StdAfx.h"
|
|
|
|
#include <python2.7/Python.h>
|
|
|
|
#include "PythonUtils.h"
|
|
#include "PythonLauncher.h"
|
|
#include "PythonMarshal.h"
|
|
#include "Resource.h"
|
|
|
|
void initdbg();
|
|
|
|
// PYTHON_EXCEPTION_SENDER
|
|
class IPythonExceptionSender
|
|
{
|
|
public:
|
|
void Clear()
|
|
{
|
|
m_strExceptionString = "";
|
|
}
|
|
|
|
void RegisterExceptionString(const char * c_szString)
|
|
{
|
|
m_strExceptionString += c_szString;
|
|
}
|
|
|
|
virtual void Send() = 0;
|
|
|
|
protected:
|
|
std::string m_strExceptionString;
|
|
};
|
|
|
|
extern IPythonExceptionSender * g_pkExceptionSender;
|
|
|
|
void SetExceptionSender(IPythonExceptionSender * pkExceptionSender);
|
|
// END_OF_PYTHON_EXCEPTION_SENDER
|