📄 pythonhelpers.cpp
字号:
// MUD Programming
// Ron Penton
// (C)2003
// PythonHelpers.cpp - This file has several helper functions for use with
// python scripts.
//
//
#include "PythonHelpers.h"
namespace BetterMUD
{
std::string PythonObject::GetNameOfClass()
{
PythonObject cls = PyObject_GetAttrString( m_object, "__class__" );
PythonObject name = PyObject_GetAttrString( cls.get(), "__name__" );
return StringFromPy( name );
}
std::string PythonObject::GetName()
{
PythonObject name = PyObject_GetAttrString( m_object, "__name__" );
return StringFromPy( name );
}
} // end namespace BetterMUD
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -