From 993ec646577b963c493723dca192ffbd27b4943e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 15 Dec 2008 16:10:26 +0000 Subject: [PATCH] Added deprecated messages to get/set methods of outgoing expiry schemes. --- include/osgDB/DatabasePager | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/include/osgDB/DatabasePager b/include/osgDB/DatabasePager index 3b5561536..c1494b9eb 100644 --- a/include/osgDB/DatabasePager +++ b/include/osgDB/DatabasePager @@ -215,37 +215,28 @@ class OSGDB_EXPORT DatabasePager : public osg::NodeVisitor::DatabaseRequestHandl unsigned int getTargetMaximumNumberOfPageLOD() const { return _targetMaximumNumberOfPageLOD; } - /** Set the amount of time that a subgraph will be kept without being visited in the cull traversal - * before being removed.*/ + /** Deprecated.*/ void setExpiryDelay(double expiryDelay) { _expiryDelay = expiryDelay; } - /** Get the amount of time that a subgraph will be kept without being visited in the cull traversal - * before being removed.*/ + /** Deprecated.*/ double getExpiryDelay() const { return _expiryDelay; } - /** Set the number of frames that a subgraph will be kept without being visited in the cull traversal - * before being removed.*/ + /** Deprecated.*/ void setExpiryFrames(int expiryFrames) { _expiryFrames = expiryFrames; } - /** Get the number of frames that a subgraph will be kept without being visited in the cull traversal - * before being removed.*/ + /** Deprecated.*/ int getExpiryFrames() const { return _expiryFrames; } - - /** Set the amount of time that a subgraph's OpenGL objects will be kept without being visited in the cull traversal - * before being released.*/ + /** Deprecated.*/ void setReleaseDelay(double releaseDelay); - /** Get the amount of time that a subgraph's OpenGL objects will be kept without being visited in the cull traversal - * before being released.*/ + /** Deprecated.*/ double getReleaseDelay() const { return _releaseDelay; } - /** Set the number of frames that a subgraph's OpenGL objects will be kept without being visited in the cull traversal - * before being released.*/ + /** Deprecated.*/ void setReleaseFrames(int releaseFrames) { _releaseFrames = releaseFrames; } - /** Get the number of frames that a subgraph's OpenGL objects will be kept without being visited in the cull traversal - * before being released.*/ + /** Deprecated.*/ int getReleaseFrames() const { return _releaseFrames; }