mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
250 B
C++
15 lines
250 B
C++
#include "ValueCtrl.h"
|
|
using namespace boost::python;
|
|
|
|
NAMESPACE_UPP
|
|
|
|
void export_ValueCtrl()
|
|
{
|
|
ONCELOCK
|
|
{
|
|
class_<ValueCtrl, bases<Ctrl>, ValueCtrl, boost::noncopyable>("ValueCtrl", "Upp ValueCtrl", no_init)
|
|
;
|
|
}
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|