Removed the stop method

This commit is contained in:
Robert Osfield
2004-07-21 19:01:16 +00:00
parent f634026034
commit d1981df21f
2 changed files with 0 additions and 5 deletions

View File

@@ -65,8 +65,6 @@ QuicktimeImageStream::QuicktimeImageStream(std::string fileName) : ImageStream()
// Deconstructor: stop and terminate thread
QuicktimeImageStream::~QuicktimeImageStream()
{
stop();
setCmd(THREAD_QUIT);
if( isRunning() )

View File

@@ -56,9 +56,6 @@ namespace osg {
/// Pause stream at current position.
virtual void pause() { setCmd(THREAD_STOP); }
/// Stop stream at current position.
virtual void stop() { setCmd(THREAD_STOP); }
/// Rewind stream to beginning.
virtual void rewind() { setCmd(THREAD_REWIND); }