aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/SimpleCommand.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-12-13 20:32:55 (GMT)
committerfluxgen <fluxgen>2002-12-13 20:32:55 (GMT)
commit25fd5b38526faaed0daabd1ff60ca5289a9f19db (patch)
tree7c4b055d587cc344c999517872a251d6df809eba /src/FbTk/SimpleCommand.hh
parent41faa6eada249048438fcb228319cf1602965046 (diff)
downloadfluxbox-25fd5b38526faaed0daabd1ff60ca5289a9f19db.zip
fluxbox-25fd5b38526faaed0daabd1ff60ca5289a9f19db.tar.bz2
simplecommand
Diffstat (limited to 'src/FbTk/SimpleCommand.hh')
-rw-r--r--src/FbTk/SimpleCommand.hh44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/FbTk/SimpleCommand.hh b/src/FbTk/SimpleCommand.hh
new file mode 100644
index 0000000..f3a4814
--- /dev/null
+++ b/src/FbTk/SimpleCommand.hh
@@ -0,0 +1,44 @@
1// SimpleCommand.hh for FbTk
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22#ifndef FBTK_SIMPLECOMMAND_HH
23#define FBTK_SIMPLECOMMAND_HH
24
25#include "Command.hh"
26
27namespace FbTk {
28
29/// a simple command
30template <typename Receiver>
31class SimpleCommand: public Command {
32public:
33 typedef void (Receiver::* Action)();
34 SimpleCommand(Receiver &r, Action a):
35 m_receiver(r), m_action(a) { }
36 void execute() { (m_receiver.*m_action)(); }
37private:
38 Receiver &m_receiver;
39 Action m_action;
40};
41
42}; // end namespace FbTk
43
44#endif // FBTK_SIMPLECOMMAND_HH