mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
There're places where manual intervention is still required as uncrustify is not ideal (unfortunately), but at least one may rely on it to do the right thing most of the time (e.g. when sending in a patch). The style itself is quite different from what we had before but making it uniform across all the codebase is the key. I also hope that it'll make the code more readable (YMMV) and less sensitive to further changes.
68 lines
945 B
C++
68 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 +=(const Speed& that)
|
|
{
|
|
_Bps += that._Bps;
|
|
return *this;
|
|
}
|
|
|
|
Speed operator +(const Speed& that) const
|
|
{
|
|
return Speed(_Bps + that._Bps);
|
|
}
|
|
|
|
bool operator <(const Speed& that) const
|
|
{
|
|
return _Bps < that._Bps;
|
|
}
|
|
|
|
private:
|
|
Speed(int Bps) :
|
|
_Bps(Bps)
|
|
{
|
|
}
|
|
|
|
private:
|
|
int _Bps;
|
|
};
|