mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-08 19:22:29 +00:00
21 lines
267 B
C++
21 lines
267 B
C++
#ifndef RTORRENT_DISPLAY_WINDOW_STATUSBAR_H
|
|
#define RTORRENT_DISPLAY_WINDOW_STATUSBAR_H
|
|
|
|
#include "window.h"
|
|
|
|
namespace display {
|
|
|
|
class WindowStatusbar : public Window {
|
|
public:
|
|
WindowStatusbar();
|
|
|
|
virtual void redraw();
|
|
|
|
private:
|
|
int m_counter;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|