mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 15:09:42 -05:00
16 lines
292 B
C
16 lines
292 B
C
|
#include "ui_BandwidthStatsWidget.h"
|
||
|
#include "BWGraph.h"
|
||
|
|
||
|
class BandwidthStatsWidget: public QWidget
|
||
|
{
|
||
|
public:
|
||
|
BandwidthStatsWidget(QWidget *parent) ;
|
||
|
|
||
|
protected slots:
|
||
|
void updateFriendSelection(int n);
|
||
|
void updateServiceSelection(int n);
|
||
|
|
||
|
private:
|
||
|
Ui::BwStatsWidget ui;
|
||
|
};
|