Files
transmission/qt/Speed.h
Charles Kerr 6aa559f12f refactor: remove QVariants from torrent (#1234)
* chore: remove qvariants from torrent class

* chore: remove unused Q_DECLARE macro calls

* refactor: remove unused includes from Torrent.h

* chore: make clang-tidy and linter happy

* refactor: rename 'setValue()' to 'change()'

* refactor: make tr_variant function paramters const

* chore: remove devel scaffolding

* refactor: rename peer_limit_ to peerLimit_

* refactor: do not use bitwise logic on booleans
2020-05-19 18:42:17 -05:00

78 lines
1.1 KiB
C++

/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
class Speed
{
public:
Speed() :
_Bps(0)
{
}
double KBps() const;
int Bps() const
{
return _Bps;
}
bool isZero() const
{
return _Bps == 0;
}
static Speed fromKBps(double KBps);
static Speed fromBps(int Bps)
{
return Speed(Bps);
}
void setBps(int Bps)
{
_Bps = Bps;
}
Speed& operator +=(Speed const& that)
{
_Bps += that._Bps;
return *this;
}
Speed operator +(Speed const& that) const
{
return Speed(_Bps + that._Bps);
}
bool operator <(Speed const& that) const
{
return _Bps < that._Bps;
}
bool operator ==(Speed const& that) const
{
return _Bps == that._Bps;
}
bool operator !=(Speed const& that) const
{
return _Bps != that._Bps;
}
private:
Speed(int Bps) :
_Bps(Bps)
{
}
private:
int _Bps;
};