#ifndef MAIN_H #define MAIN_H #include #include "workspace.h" typedef QValueList WorkspaceList; class Application : public KApplication { public: Application( int &argc, char **argv ); ~Application(); protected: bool x11EventFilter( XEvent * ); private: WorkspaceList workspaces; }; #endif