aboutsummaryrefslogtreecommitdiff
path: root/gui/browser.h
diff options
context:
space:
mode:
authorMax Horn2003-11-10 23:40:48 +0000
committerMax Horn2003-11-10 23:40:48 +0000
commit22c22d1e81b25c103100b6c8347b154f16dafc5e (patch)
tree233ff187add3c769346b5e7c89ee954eb967b477 /gui/browser.h
parent5c2a3da7f2f8f45e20b732defbaed7aa47af00c8 (diff)
downloadscummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.gz
scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.tar.bz2
scummvm-rg350-22c22d1e81b25c103100b6c8347b154f16dafc5e.zip
added namespace GUI
svn-id: r11255
Diffstat (limited to 'gui/browser.h')
-rw-r--r--gui/browser.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/gui/browser.h b/gui/browser.h
index 847a50a24f..31c98d6f5b 100644
--- a/gui/browser.h
+++ b/gui/browser.h
@@ -25,12 +25,14 @@
#include "common/str.h"
#include "common/list.h"
-class ListWidget;
-class StaticTextWidget;
-
class FilesystemNode;
class FSList;
+namespace GUI {
+
+class ListWidget;
+class StaticTextWidget;
+
class BrowserDialog : public Dialog {
typedef Common::String String;
typedef Common::StringList StringList;
@@ -54,4 +56,6 @@ protected:
void updateListing();
};
+} // End of namespace GUI
+
#endif