mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
20 lines
229 B
C++
20 lines
229 B
C++
#include "Misc.h"
|
|
using namespace boost::python;
|
|
|
|
NAMESPACE_UPP
|
|
|
|
void DoLog(const String& s)
|
|
{
|
|
RLOG(s);
|
|
}
|
|
|
|
void export_Log()
|
|
{
|
|
ONCELOCK
|
|
{
|
|
def("log", &DoLog, "Writes to the UppLog");
|
|
|
|
}
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|