Lumiera  0.pre.03
»edit your freedom«
cmd.hpp
Go to the documentation of this file.
1 /*
2  CMD.hpp - Steam Command definition keys
3 
4  Copyright (C)
5  2017, Hermann Vosseler <Ichthyostega@web.de>
6 
7   **Lumiera** is free software; you can redistribute it and/or modify it
8   under the terms of the GNU General Public License as published by the
9   Free Software Foundation; either version 2 of the License, or (at your
10   option) any later version. See the file COPYING for further details.
11 
12 */
13 
14 
29 #ifndef STEAM_CMD_H
30 #define STEAM_CMD_H
31 
33 //#include "lib/symbol.hpp"
34 //#include "steam/common.hpp"
35 
36 //#include <string>
37 
38 
39 
40 
41 namespace steam {
42 namespace cmd {
43 
44 // using std::string;
45 // using lib::Symbol;
46  using control::Command;
47  using control::CommandDef;
48  using control::CommandSetup;
49  //using std::shared_ptr;
50 
51 
52  /* ========= commands for global actions ========= */
53 
54  extern CommandSetup session_saveSnapshot;
55  extern CommandSetup session_newSequence;
56 
57 
58 
59  /* ========= commands for sequence actions ======= */
60 
61  extern CommandSetup sequence_newTrack;
62 
63 
64 
65  /* ========= commands for actions in local scope ======= */
66 
67  extern CommandSetup scope_moveRelocateClip;
68 
69 
70 
71  /* ========= commands for meta actions ======= */
72 
73  extern CommandSetup test_meta_activateContentDiff;
74  extern CommandSetup meta_deactivateContentDiff;
75 
76  //--Demo-and-Development----
77  extern CommandSetup test_meta_displayInfo;
78  extern CommandSetup test_meta_markError;
79  extern CommandSetup test_meta_markNote;
80  extern CommandSetup test_meta_markAction;
81 
82 
83 }} // namespace steam::cmd
84 #endif /*STEAM_CMD_H*/
Steam-Layer implementation namespace root.
Provision for setup of concrete commands for use by the UI.