]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/model/modellib.hxx
Do not modify danymically generated textures.
[simgear.git] / simgear / scene / model / modellib.hxx
index f40ba92ef24b8a29ae0adf6dc0838df083097128..7c38b10abedd6adcfcf659d601a7b5b1452145db 100644 (file)
@@ -83,16 +83,8 @@ protected:
 class SGModelData : public osg::Referenced {
 public:
     virtual ~SGModelData() {}
-    virtual void modelLoaded( const string& path, SGPropertyNode *prop,
-                              osg::Node*branch) = 0;
-
-    virtual void setProps(SGPropertyNode *p)
-        { _props = p; }
-
-    SGPropertyNode *getProperties()
-        { return _props; }
-protected:
-    SGPropertyNode_ptr _props;
+    virtual void modelLoaded(const string& path, SGPropertyNode *prop,
+                             osg::Node* branch) = 0;
 };
 
 }