Removed the String inhertiance from osg::Referenced.

This commit is contained in:
Robert Osfield
2006-09-01 12:46:45 +00:00
parent 5d1de02afa
commit 96e1630cc7
2 changed files with 2 additions and 4 deletions

View File

@@ -18,7 +18,6 @@
#include <set>
#include <string>
#include <osg/Referenced>
#include <osgText/Export>
namespace osgText {
@@ -41,7 +40,7 @@ public:
class Text;
class OSGTEXT_EXPORT String : public osg::Referenced, public VectorUInt
class OSGTEXT_EXPORT String : public VectorUInt
{
public:
@@ -71,7 +70,7 @@ class OSGTEXT_EXPORT String : public osg::Referenced, public VectorUInt
String(const wchar_t* text) { set(text); }
String(const std::string& text,Encoding encoding) { set(text,encoding); }
virtual ~String() {} // public temporily while osgText is still in flux.
virtual ~String() {}
String& operator = (const String& str);