Added beginings of Text implementation

This commit is contained in:
Robert Osfield
2013-09-03 10:17:06 +00:00
parent f5deda56a6
commit fdfe3210ce
7 changed files with 147 additions and 0 deletions

View File

@@ -19,6 +19,10 @@
namespace osgPresentation {
typedef std::pair< osg::ref_ptr<osg::Object>, std::string> ObjectDescription;
typedef std::list< ObjectDescription > PropertyList;
/** osgPresentation::Group
*/
class OSGPRESENTATION_EXPORT Group : public osg::MatrixTransform
@@ -49,6 +53,10 @@ class OSGPRESENTATION_EXPORT Group : public osg::MatrixTransform
return setUserValue(name, value);
}
/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
virtual bool getSupportedProperties(PropertyList&) { return false; }
protected :
virtual ~Group() {}