Added initial shell of PushButton implementation

This commit is contained in:
Robert Osfield
2014-05-16 10:38:40 +00:00
parent 03fc0c3662
commit 3e00764649
10 changed files with 243 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
#include <osgUI/PushButton>
#include <osg/ValueObject>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( PushButton,
new osgUI::PushButton,
osgUI::PushButton,
"osg::Object osg::Node osg::Group osgUI::Widget osgUI::PushButton" )
{
ADD_STRING_SERIALIZER( Text, std::string());
}