added playlist to SMIL conversion to Playlist class

added releasePlaylist and and releaseAudioClip to TestStorageClient
This commit is contained in:
fgerlits 2004-11-06 17:09:39 +00:00
parent ecd2c3d55c
commit 057da6a786
14 changed files with 327 additions and 32 deletions

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $
Version : $Revision: 1.7 $
Version : $Revision: 1.8 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storage/src/TestStorageClient.h,v $
------------------------------------------------------------------------------*/
@ -67,7 +67,7 @@ using namespace LiveSupport::Core;
* A dummy storage client, only used for test purposes.
*
* @author $Author: fgerlits $
* @version $Revision: 1.7 $
* @version $Revision: 1.8 $
*/
class TestStorageClient :
virtual public Configurable,
@ -160,6 +160,19 @@ class TestStorageClient :
getPlaylist(Ptr<const UniqueId>::Ref id) const
throw (std::invalid_argument);
/**
* Release the lock on a playlist with the specified id.
* At this point, this does not do anything.
*
* @param id the id of the playlist to release.
* @exception std::invalid_argument if no playlist with the specified
* specified id exists.
*/
virtual void
releasePlaylist(Ptr<const UniqueId>::Ref id) const
throw (std::invalid_argument,
std::logic_error);
/**
* Delete the playlist with the specified id.
*
@ -210,6 +223,18 @@ class TestStorageClient :
getAudioClip(Ptr<const UniqueId>::Ref id) const
throw (std::invalid_argument);
/**
* Release the lock on an audio clip with the specified id.
* At this point, this does not do anything.
*
* @param id the id of the audio clip to release.
* @exception std::invalid_argument if no audio clip with the
* specified id exists.
*/
virtual void
releaseAudioClip(Ptr<const UniqueId>::Ref id) const
throw (std::invalid_argument);
/**
* Delete the audio clip with the specified id.
*