Subversion Repositories Games.Chess Giants

Rev

Rev 96 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 96 Rev 169
Line 4... Line 4...
4
  Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
4
  Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5
  Copyright (C) 2015-2016 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
5
  Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
 
6
 
7
  Stockfish is free software: you can redistribute it and/or modify
7
  Stockfish is free software: you can redistribute it and/or modify
8
  it under the terms of the GNU General Public License as published by
8
  it under the terms of the GNU General Public License as published by
9
  the Free Software Foundation, either version 3 of the License, or
9
  the Free Software Foundation, either version 3 of the License, or
10
  (at your option) any later version.
10
  (at your option) any later version.
Line 47... Line 47...
47
 
47
 
48
public:
48
public:
49
  Option(OnChange = nullptr);
49
  Option(OnChange = nullptr);
50
  Option(bool v, OnChange = nullptr);
50
  Option(bool v, OnChange = nullptr);
51
  Option(const char* v, OnChange = nullptr);
51
  Option(const char* v, OnChange = nullptr);
52
  Option(int v, int min, int max, OnChange = nullptr);
52
  Option(int v, int minv, int maxv, OnChange = nullptr);
53
 
53
 
54
  Option& operator=(const std::string&);
54
  Option& operator=(const std::string&);
55
  void operator<<(const Option&);
55
  void operator<<(const Option&);
56
  operator int() const;
56
  operator int() const;
57
  operator std::string() const;
57
  operator std::string() const;