#include "EditCtrl.h" using namespace boost::python; NAMESPACE_UPP void export_EditCtrl() { ONCELOCK { class_, boost::noncopyable>("EditField", "Upp EditField") ; class_, boost::noncopyable>("EditString", "Upp EditString") ; class_, boost::noncopyable>("EditInt", "Upp EditInt") ; class_, boost::noncopyable>("EditInt64", "Upp EditInt64") ; class_, boost::noncopyable>("EditDouble", "Upp EditDouble") ; class_, boost::noncopyable>("EditStringNotNull", "Upp EditStringNotNull") ; class_, boost::noncopyable>("EditIntNotNull", "Upp EditIntNotNull") ; class_, boost::noncopyable>("EditInt64NotNull", "Upp EditInt64NotNull") ; class_, boost::noncopyable>("EditDoubleNotNull", "Upp EditDoubleNotNull") ; class_, boost::noncopyable>("EditIntSpin", "Upp EditIntSpin") ; class_, boost::noncopyable>("EditInt64Spin", "Upp EditInt64Spin") ; class_, boost::noncopyable>("EditDoubleSpin", "Upp EditDoubleSpin") ; class_, boost::noncopyable>("EditIntNotNullSpin", "Upp EditIntNotNullSpin") ; class_, boost::noncopyable>("EditInt64NotNullSpin", "Upp EditInt64NotNullSpin") ; class_, boost::noncopyable>("EditDoubleNotNullSpin", "Upp EditDoubleNotNullSpin") ; } } END_UPP_NAMESPACE