change namespace Help into class

This commit is contained in:
Andrzej Rybczak
2009-02-14 20:01:19 +01:00
parent d6a6bca3e6
commit 6f09d3b592
4 changed files with 130 additions and 124 deletions

View File

@@ -22,13 +22,23 @@
#define _HELP_H
#include "ncmpcpp.h"
#include "screen.h"
namespace Help
class Help : public Screen<Scrollpad>
{
void Init();
void Resize();
void SwitchTo();
}
public:
virtual void Init();
virtual void Resize();
virtual void SwitchTo();
virtual std::string Title();
protected:
std::string DisplayKeys(int *, int = 2);
void GetKeybindings();
};
extern Help *myHelp;
#endif