aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/core/search_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/core/search_manager.h')
-rw-r--r--engines/zvision/core/search_manager.h38
1 files changed, 30 insertions, 8 deletions
diff --git a/engines/zvision/core/search_manager.h b/engines/zvision/core/search_manager.h
index c768cb8b00..180102eac6 100644
--- a/engines/zvision/core/search_manager.h
+++ b/engines/zvision/core/search_manager.h
@@ -1,5 +1,27 @@
-#ifndef SEARCH_MANAGER_H_INCLUDED
-#define SEARCH_MANAGER_H_INCLUDED
+/* 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 ZVISION_SEARCH_MANAGER_H
+#define ZVISION_SEARCH_MANAGER_H
#include "common/str.h"
#include "common/hash-str.h"
@@ -10,10 +32,10 @@
namespace ZVision {
-class sManager {
+class SearchManager {
public:
- sManager(const Common::String &root_path, int depth);
- ~sManager();
+ SearchManager(const Common::String &rootPath, int depth);
+ ~SearchManager();
void addFile(const Common::String &name, Common::Archive *arch);
void addDir(const Common::String &name);
@@ -27,14 +49,14 @@ public:
private:
- void list_dir_recursive(Common::List<Common::String> &dir_list, const Common::FSNode &fs_node, int depth);
+ void listDirRecursive(Common::List<Common::String> &dirList, const Common::FSNode &fsNode, int depth);
struct Node {
Common::String name;
Common::Archive *arch;
};
- Common::List<Common::String> dir_list;
+ Common::List<Common::String> dirList;
typedef Common::HashMap<Common::String, Node, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> MatchList;
@@ -48,4 +70,4 @@ private:
}
-#endif // SEARCH_MANAGER_H_INCLUDED
+#endif // ZVISION_SEARCH_MANAGER_H