diff options
| author | Max Horn | 2008-07-30 15:44:34 +0000 | 
|---|---|---|
| committer | Max Horn | 2008-07-30 15:44:34 +0000 | 
| commit | 4632a33087524a2ccb872ddb567b5a01b11aee26 (patch) | |
| tree | 12c1f68ded3bfad6b43d80128b2bb2419493a257 /common/system.h | |
| parent | fbe4f0dd48c290701532e39502551cd07d881dcb (diff) | |
| download | scummvm-rg350-4632a33087524a2ccb872ddb567b5a01b11aee26.tar.gz scummvm-rg350-4632a33087524a2ccb872ddb567b5a01b11aee26.tar.bz2 scummvm-rg350-4632a33087524a2ccb872ddb567b5a01b11aee26.zip  | |
Revert my accidental commit of the OSystem changes (oops)
svn-id: r33456
Diffstat (limited to 'common/system.h')
| -rw-r--r-- | common/system.h | 19 | 
1 files changed, 1 insertions, 18 deletions
diff --git a/common/system.h b/common/system.h index 501d0802fd..b895a5cfba 100644 --- a/common/system.h +++ b/common/system.h @@ -44,8 +44,6 @@ namespace Common {  	class EventManager;  	class SaveFileManager;  	class TimerManager; -	class SeekableReadStream; -	class WriteStream;  }  class FilesystemFactory; @@ -902,25 +900,10 @@ public:  	/**  	 * Returns the FilesystemFactory object, depending on the current architecture.  	 * -	 * @return the FSNode factory for the current architecture +	 * @return FilesystemFactory* The specific factory for the current architecture.  	 */  	virtual FilesystemFactory *getFilesystemFactory() = 0; -	/** -	 * Open the default config file for reading, by returning a suitable -	 * ReadStream instance. It is the callers responsiblity to delete -	 * the stream after use. -	 */ -	virtual Common::SeekableReadStream *openConfigFileForReading(); - -	/** -	 * Open the default config file for writing, by returning a suitable -	 * WriteStream instance. It is the callers responsiblity to delete -	 * the stream after use. -	 * -	 * May return 0 to indicate that writing to config file is not possible. -	 */ -	virtual Common::WriteStream *openConfigFileForWriting();  	/**  	 * Return String which is used for backend-specific addition to theme  | 
