/* Clementine Window Manager Copyright 2002 Dave Berton based on aewm Copyright 1998-2001 Decklin Foster This program is free software; see LICENSE for details. */ #ifndef KEYS_H #define KEYS_H #include "windowsystem.h" #include class Keys { public: Keys(); ~Keys(); // WindowSystem::Action takeKey(); private: bool parse( const std::string& name ); }; #endif