]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.h
Retire struct OptionsMap
[stockfish] / src / ucioption.h
index 0be8c7e39d4734b3cbf8ba918a4c0958ac08d4b9..b78bf6fdf4c4108f6edc97b2cfeadb37737f7092 100644 (file)
 #include <map>
 #include <string>
 
-struct OptionsMap;
+class UCIOption;
+
+/// Custom comparator because UCI options should be case insensitive
+struct CaseInsensitiveLess {
+  bool operator() (const std::string&, const std::string&) const;
+};
+
+/// Our options container is actually a std::map
+typedef std::map<std::string, UCIOption, CaseInsensitiveLess> OptionsMap;
 
 /// UCIOption class implements an option as defined by UCI protocol
 class UCIOption {
@@ -59,19 +67,8 @@ private:
   Fn* on_change;
 };
 
-
-/// Custom comparator because UCI options should be case insensitive
-struct CaseInsensitiveLess {
-  bool operator() (const std::string&, const std::string&) const;
-};
-
-
-/// Our options container is actually a map with a customized c'tor
-struct OptionsMap : public std::map<std::string, UCIOption, CaseInsensitiveLess> {
-  OptionsMap();
-};
-
-extern std::ostream& operator<<(std::ostream&, const OptionsMap&);
 extern OptionsMap Options;
 
+namespace UCIOptions { void init(OptionsMap&); }
+
 #endif // !defined(UCIOPTION_H_INCLUDED)