mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
217 B
C++
15 lines
217 B
C++
#include "Common.h"
|
|
using namespace boost::python;
|
|
|
|
NAMESPACE_UPP
|
|
|
|
void export_Button()
|
|
{
|
|
ONCELOCK
|
|
{
|
|
class_<Button, bases<Pusher>, boost::noncopyable>("Button", "Upp Button")
|
|
;
|
|
}
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|