aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index bc67610..46b3465 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: FbCommands.hh,v 1.19 2004/04/22 21:12:33 fluxgen Exp $ 22// $Id: FbCommands.hh,v 1.20 2004/10/06 11:40:28 akir Exp $
23 23
24// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox 24// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox
25 25
@@ -42,6 +42,16 @@ private:
42 const int m_screen_num; 42 const int m_screen_num;
43}; 43};
44 44
45/// sets environment
46class ExportCmd : public FbTk::Command {
47public:
48 ExportCmd(const std::string& name, const std::string& value);
49 void execute();
50private:
51 std::string m_name;
52 std::string m_value;
53};
54
45/// exit fluxbox 55/// exit fluxbox
46class ExitFluxboxCmd: public FbTk::Command { 56class ExitFluxboxCmd: public FbTk::Command {
47public: 57public: