aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
index 2bc2c81..9b8e8fb 100644
--- a/src/CurrentWindowCmd.hh
+++ b/src/CurrentWindowCmd.hh
@@ -87,6 +87,16 @@ private:
87 const int m_workspace_num; 87 const int m_workspace_num;
88}; 88};
89 89
90// goto tab
91class GoToTabCmd: public WindowHelperCmd {
92public:
93 explicit GoToTabCmd(int tab_num):m_tab_num(tab_num) { }
94protected:
95 void real_execute();
96private:
97 const int m_tab_num;
98};
99
90// move cmd, relative position 100// move cmd, relative position
91class MoveCmd: public WindowHelperCmd { 101class MoveCmd: public WindowHelperCmd {
92public: 102public: