2006-09-30 16:02:39 +00:00
|
|
|
/*
|
2015-04-19 15:17:47 +00:00
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2015 Vladimir Golovnev <glassez@yandex.ru>
|
2006-09-30 16:02:39 +00:00
|
|
|
*
|
2007-07-14 14:31:59 +00:00
|
|
|
* 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.
|
2006-09-30 16:02:39 +00:00
|
|
|
*
|
|
|
|
* 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
|
2007-07-14 14:31:59 +00:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2009-04-05 17:00:55 +00:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
2006-09-30 16:02:39 +00:00
|
|
|
*/
|
|
|
|
|
2015-04-19 15:17:47 +00:00
|
|
|
#ifndef TRISTATEBOOL_H
|
|
|
|
#define TRISTATEBOOL_H
|
2007-09-04 04:18:51 +00:00
|
|
|
|
2015-04-19 15:17:47 +00:00
|
|
|
class TriStateBool
|
|
|
|
{
|
2010-12-04 10:31:14 +00:00
|
|
|
public:
|
2017-03-07 13:10:42 +00:00
|
|
|
static const TriStateBool Undefined;
|
|
|
|
static const TriStateBool False;
|
|
|
|
static const TriStateBool True;
|
2006-09-30 16:02:39 +00:00
|
|
|
|
2017-03-07 13:10:42 +00:00
|
|
|
TriStateBool() = default;
|
|
|
|
TriStateBool(const TriStateBool &other) = default;
|
2008-11-01 21:42:56 +00:00
|
|
|
|
2017-03-07 13:10:42 +00:00
|
|
|
explicit TriStateBool(int value);
|
|
|
|
explicit operator int() const;
|
|
|
|
|
|
|
|
TriStateBool &operator=(const TriStateBool &other) = default;
|
|
|
|
bool operator==(const TriStateBool &other) const;
|
|
|
|
bool operator!=(const TriStateBool &other) const;
|
2010-10-25 19:34:42 +00:00
|
|
|
|
|
|
|
private:
|
2017-09-16 17:42:39 +00:00
|
|
|
signed char m_value = -1; // Undefined by default
|
2006-09-30 16:02:39 +00:00
|
|
|
};
|
|
|
|
|
2015-04-19 15:17:47 +00:00
|
|
|
#endif // TRISTATEBOOL_H
|