mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
dadffa2c0f
This way all the qualifiers (`const`, `volatile`, `mutable`) are grouped together, e.g. `T const* const x` vs. `const T* const x`. Also helps reading types right-to-left, e.g. "constant pointer to constant T" vs. "constant pointer to T which is constant".
67 lines
945 B
C++
67 lines
945 B
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;
|
|
}
|
|
|
|
private:
|
|
Speed(int Bps) :
|
|
_Bps(Bps)
|
|
{
|
|
}
|
|
|
|
private:
|
|
int _Bps;
|
|
};
|