aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorNicola Mettifogo2008-09-05 11:41:39 +0000
committerNicola Mettifogo2008-09-05 11:41:39 +0000
commit12106a159912055d77668f8436c1a1e87d6c0f4e (patch)
tree102603ccde53c12975cb3010cc37e34ad52bc025 /graphics
parent5c0b91397d559f0a62412a135324f974e50a18eb (diff)
downloadscummvm-rg350-12106a159912055d77668f8436c1a1e87d6c0f4e.tar.gz
scummvm-rg350-12106a159912055d77668f8436c1a1e87d6c0f4e.tar.bz2
scummvm-rg350-12106a159912055d77668f8436c1a1e87d6c0f4e.zip
Removed useless dependencies from common/file.h in common code. When complete removal was not possibile, dependency has been pushed to the cpp files from the headers.
svn-id: r34343
Diffstat (limited to 'graphics')
-rw-r--r--graphics/dxa_player.cpp1
-rw-r--r--graphics/dxa_player.h6
2 files changed, 2 insertions, 5 deletions
diff --git a/graphics/dxa_player.cpp b/graphics/dxa_player.cpp
index 28a1bc4dbd..f4c93a51f1 100644
--- a/graphics/dxa_player.cpp
+++ b/graphics/dxa_player.cpp
@@ -24,6 +24,7 @@
*/
#include "common/endian.h"
+#include "common/file.h"
#include "graphics/dxa_player.h"
#include "common/util.h"
diff --git a/graphics/dxa_player.h b/graphics/dxa_player.h
index 5415e440d2..dbe39bbcee 100644
--- a/graphics/dxa_player.h
+++ b/graphics/dxa_player.h
@@ -27,11 +27,7 @@
#define GRAPHICS_DXA_PLAYER_H
#include "common/scummsys.h"
-#include "common/file.h"
-
-namespace Common {
- class File;
-}
+#include "common/stream.h"
namespace Graphics {