From f6340260345b2500811d782045ccf266c06418f3 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 21 Jul 2004 19:00:48 +0000 Subject: [PATCH] Removed stop method, as it overlaps the pause method. --- include/osg/ImageStream | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/osg/ImageStream b/include/osg/ImageStream index 2ebb68dbb..9f265e759 100644 --- a/include/osg/ImageStream +++ b/include/osg/ImageStream @@ -40,14 +40,11 @@ class SG_EXPORT ImageStream : public Image enum StreamStatus { - STOPPED, PLAYING, PAUSED, REWINDING }; - virtual void stop() { _status=STOPPED; } - virtual void play() { _status=PLAYING; } virtual void pause() { _status=PAUSED; }