Files
m2dev-client-src/src/UserInterface/PythonExceptionSender.h
d1str4ught 4be475f111 init
2025-08-18 19:46:48 +02:00

14 lines
230 B
C++

#pragma once
class CPythonExceptionSender : public IPythonExceptionSender
{
public:
CPythonExceptionSender();
virtual ~CPythonExceptionSender();
void Send();
protected:
std::set<DWORD> m_kSet_dwSendedExceptionCRC;
};