2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2010-01-04 21:00:47 +00:00
|
|
|
* This file Copyright (C) 2009-2010 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-09 18:55:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTR_SPEED_H
|
|
|
|
#define QTR_SPEED_H
|
|
|
|
|
2010-07-07 00:30:42 +00:00
|
|
|
#include "formatter.h"
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
class Speed
|
|
|
|
{
|
|
|
|
private:
|
2010-07-03 00:25:22 +00:00
|
|
|
int _Bps;
|
|
|
|
Speed( int Bps ): _Bps(Bps) { }
|
2009-04-09 18:55:47 +00:00
|
|
|
public:
|
2010-07-03 00:25:22 +00:00
|
|
|
Speed( ): _Bps(0) { }
|
2010-07-07 00:30:42 +00:00
|
|
|
double KBps( ) const;
|
2010-07-03 00:25:22 +00:00
|
|
|
int Bps( ) const { return _Bps; }
|
|
|
|
bool isZero( ) const { return _Bps == 0; }
|
2010-07-04 06:07:21 +00:00
|
|
|
static Speed fromKBps( double KBps );
|
2010-07-03 00:25:22 +00:00
|
|
|
static Speed fromBps( int Bps ) { return Speed( Bps ); }
|
2010-07-25 20:36:33 +00:00
|
|
|
void setBps( int Bps ) { _Bps = Bps; }
|
2010-07-03 00:25:22 +00:00
|
|
|
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; }
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|