diff options
author | Tobia Tesan | 2016-02-28 21:04:47 +0100 |
---|---|---|
committer | Tobia Tesan | 2016-02-29 14:54:17 +0100 |
commit | e46000e2e2be5c25e302757b39e8b7738872d0d2 (patch) | |
tree | 190252febdeca3e928f192c2afbf9eebd4a87be8 /engines/wintermute/debugger | |
parent | 28fc37f529d22077d95170a11f2582909f139b6e (diff) | |
download | scummvm-rg350-e46000e2e2be5c25e302757b39e8b7738872d0d2.tar.gz scummvm-rg350-e46000e2e2be5c25e302757b39e8b7738872d0d2.tar.bz2 scummvm-rg350-e46000e2e2be5c25e302757b39e8b7738872d0d2.zip |
WINTERMUTE: Add ListingProvider abstract class
Diffstat (limited to 'engines/wintermute/debugger')
-rw-r--r-- | engines/wintermute/debugger/listing_provider.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/engines/wintermute/debugger/listing_provider.h b/engines/wintermute/debugger/listing_provider.h new file mode 100644 index 0000000000..b5ea23e49b --- /dev/null +++ b/engines/wintermute/debugger/listing_provider.h @@ -0,0 +1,42 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef LISTING_PROVIDER_H_ +#define LISTING_PROVIDER_H_ + +#include "listing.h" +#include "engines/wintermute/debugger/error.h" + +namespace Wintermute { + +class ListingProvider { +public: + virtual ~ListingProvider() {}; + /** + * Get a listing. When implementing this, the result should be safe to delete for the caller. + */ + virtual Listing *getListing(const Common::String &filename, ErrorCode &error) = 0; +}; + +} // End of namespace Wintermute + +#endif /* LISTING_PROVIDER_H_ */ |