Reduce header dependencies

svn-id: r49836
This commit is contained in:
Max Horn 2010-06-15 12:20:03 +00:00
parent 583a966d8c
commit 79c9be5d96
4 changed files with 9 additions and 1 deletions

View File

@ -23,6 +23,7 @@
*
*/
#include "common/archive.h"
#include "common/util.h"
#include "common/stack.h"
#include "graphics/primitives.h"

View File

@ -26,6 +26,7 @@
// Resource library
#include "common/file.h"
#include "common/fs.h"
#include "common/macresman.h"
#include "sci/resource.h"

View File

@ -26,8 +26,9 @@
#ifndef SCI_RESOURCE_H
#define SCI_RESOURCE_H
#include "common/fs.h"
#include "common/str.h"
#include "common/list.h"
#include "common/hashmap.h"
#include "sci/graphics/helpers.h" // for ViewType
#include "sci/decompressor.h"
@ -35,6 +36,10 @@
namespace Common {
class File;
class FSList;
class FSNode;
class WriteStream;
class SeekableReadStream;
}
namespace Sci {

View File

@ -25,6 +25,7 @@
// Resource library
#include "common/archive.h"
#include "common/file.h"
#include "sci/resource.h"