]> git.lyx.org Git - features.git/blobdiff - src/LyXAction.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / LyXAction.h
index 4fadb5c04840c4e8c2367096ab60d45c0022ae7a..19790c32e5f9bcb473bfeca5393067012d779d68 100644 (file)
 
 #include "commandtags.h"
 #include "LString.h"
+#include "support/utility.hpp"
 
 /** This class encapsulates LyX action and user command operations.
  */
-class LyXAction {
+class LyXAction : public noncopyable {
 private:
        ///
        struct func_info {
+               ///
                string name;
+               ///
                unsigned int attrib;
+               ///
                string helpText;
        };
 
        ///
        struct pseudo_func {
+               ///
                kb_action action;
+               ///
                string arg;
        };
 public:
@@ -48,7 +54,8 @@ public:
                 /// Can be used when there is no document open
                 NoBuffer = 2,
                //Interactive = 2, // Is interactive (requires a GUI)
-               Argument=4      // Requires argument
+               ///
+               Argument = 4      // Requires argument
                //MathOnly = 8,    // Only math mode
                //EtcEtc = ...     // Or other attributes...
        };