From Tree, mods to help support the creation of Java bindings.

This commit is contained in:
Robert Osfield
2002-12-06 09:44:11 +00:00
parent 00871ba948
commit 1be82ec697
5 changed files with 16 additions and 12 deletions

View File

@@ -78,12 +78,12 @@ class SG_EXPORT GeoSet : public Drawable
};
struct IndexPointer
struct SG_EXPORT IndexPointer
{
mutable uint _size;
bool _is_ushort;
union
union _TPtr
{
GLushort* _ushort;
GLuint* _uint;
@@ -315,7 +315,7 @@ class SG_EXPORT GeoSet : public Drawable
* momory attached to the GeoSet is owned by this GeoSet and can be deleted
* using delete []. If this is not the cause derive your own AttributeDeleteFunctor
* a specify your own memory deletion operation.*/
struct AttributeDeleteFunctor : public osg::Referenced
struct SG_EXPORT AttributeDeleteFunctor : public osg::Referenced
{
// see GeoSet.cpp for implemention.
virtual void operator() (GeoSet* gset);