mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-10 04:02:30 +00:00
22 lines
296 B
C++
22 lines
296 B
C++
#ifndef RTORRENT_DISPLAY_WINDOW_TITLE_H
|
|
#define RTORRENT_DISPLAY_WINDOW_TITLE_H
|
|
|
|
#include <string>
|
|
#include "window.h"
|
|
|
|
namespace display {
|
|
|
|
class WindowTitle : public Window {
|
|
public:
|
|
WindowTitle(const std::string& s);
|
|
|
|
virtual void redraw();
|
|
|
|
private:
|
|
std::string m_title;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|