Removed getNeighbours() method to avoid problems with introspection wrappers

This commit is contained in:
Robert Osfield
2010-04-01 21:18:39 +00:00
parent 47cdee3611
commit 656efbf03f
2 changed files with 0 additions and 16 deletions

View File

@@ -82,10 +82,7 @@ class OSGTERRAIN_EXPORT TerrainTechnique : public osg::Object, public osg::Obser
void addNeighbour(TerrainTile* tile) { _neighbours.addNeighbour(tile); }
void removeNeighbour(TerrainTile* tile) { _neighbours.removeNeighbour(tile); }
bool containsNeighbour(TerrainTile* tile) { return _neighbours.containsNeighbour(tile); }
TerrainNeighbours& getNeighbours() { return _neighbours; }
const TerrainNeighbours& getNeighbours() const { return _neighbours; }
protected: