Added shell of new osgUI::TabWidget class
git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14438 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
16
src/osgWrappers/serializers/osgUI/Tab.cpp
Normal file
16
src/osgWrappers/serializers/osgUI/Tab.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <osgUI/TabWidget>
|
||||
#include <osg/ValueObject>
|
||||
#include <osgDB/ObjectWrapper>
|
||||
#include <osgDB/InputStream>
|
||||
#include <osgDB/OutputStream>
|
||||
|
||||
|
||||
REGISTER_OBJECT_WRAPPER( Tab,
|
||||
new osgUI::Tab,
|
||||
osgUI::Tab,
|
||||
"osg::Object osgUI::Tab" )
|
||||
{
|
||||
ADD_STRING_SERIALIZER(Text, "");
|
||||
ADD_VEC4F_SERIALIZER(Color, osg::Vec4(1.0f,1.0f,1.0f,0.0f));
|
||||
ADD_OBJECT_SERIALIZER(Widget, osgUI::Widget, NULL);
|
||||
}
|
||||
Reference in New Issue
Block a user