]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.h
Improved support for docbook export in inset text.
[lyx.git] / src / LyXAction.h
index cf611e3c35283903d8687031497598d3ee77424e..9c4d4c1d12a5453f9ae4cb42b02bbf905e6f02c9 100644 (file)
 
 #include "commandtags.h"
 #include "LString.h"
-#include "support/utility.hpp"
+#include <boost/utility.hpp>
 
 /** This class encapsulates LyX action and user command operations.
  */
-class LyXAction : public noncopyable {
+class LyXAction : boost::noncopyable {
 private:
        ///
        struct func_info {
@@ -97,6 +97,9 @@ public:
        /// True if the command has `flag' set
        bool funcHasFlag(kb_action action, func_attrib flag) const;
 
+       typedef func_map::const_iterator const_func_iterator;
+       const_func_iterator func_begin() const;
+       const_func_iterator func_end() const;
 private:
        ///
        void init();