mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
16 lines
313 B
C++
16 lines
313 B
C++
#include "ValueCtrl.h"
|
|
using namespace boost::python;
|
|
|
|
NAMESPACE_UPP
|
|
|
|
void export_ValueCtrl()
|
|
{
|
|
ONCELOCK
|
|
{
|
|
scope().attr("__doc__") = "ValueCtrl module's docstring";
|
|
class_<ValueCtrl, bases<Ctrl>, ValueCtrl, boost::noncopyable>("ValueCtrl", "An Upp ValueCtrl", no_init)
|
|
;
|
|
}
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|