aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
index 9b8e8fb..4b05030 100644
--- a/src/CurrentWindowCmd.hh
+++ b/src/CurrentWindowCmd.hh
@@ -60,6 +60,15 @@ protected:
60 void real_execute(); 60 void real_execute();
61}; 61};
62 62
63class SetHeadCmd : public WindowHelperCmd {
64public:
65 explicit SetHeadCmd(int head) : m_head(head) { }
66protected:
67 void real_execute();
68private:
69 const int m_head;
70};
71
63class SendToWorkspaceCmd: public WindowHelperCmd { 72class SendToWorkspaceCmd: public WindowHelperCmd {
64public: 73public:
65 explicit SendToWorkspaceCmd(int workspace_num):m_workspace_num(workspace_num) { } 74 explicit SendToWorkspaceCmd(int workspace_num):m_workspace_num(workspace_num) { }