Added wrappers for open and close methods

This commit is contained in:
Robert Osfield 2014-05-23 15:00:09 +00:00
parent bda5ec4875
commit 55c2041d4d
2 changed files with 4 additions and 0 deletions

View File

@ -11,4 +11,6 @@ REGISTER_OBJECT_WRAPPER( Dialog,
"osg::Object osg::Node osg::Group osgUI::Widget osgUI::Dialog" )
{
ADD_STRING_SERIALIZER( Title, std::string());
ADD_METHOD( open );
ADD_METHOD( close );
}

View File

@ -10,4 +10,6 @@ REGISTER_OBJECT_WRAPPER( Popup,
osgUI::Popup,
"osg::Object osg::Node osg::Group osgUI::Widget osgUI::Popup" )
{
ADD_METHOD( open );
ADD_METHOD( close );
}