]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
Fix bug #10901.
[lyx.git] / src / insets / ExternalTemplate.h
index 18d9835f28fd4e0dbfc30237272e29fc935a4599..e5b6755059700b009b756ea12edea6b70cc19a47 100644 (file)
@@ -15,8 +15,6 @@
 
 #include "ExternalTransforms.h"
 
-#include <boost/noncopyable.hpp>
-
 #include <vector>
 
 namespace lyx {
@@ -55,7 +53,7 @@ public:
        /// What will the button in the GUI say?
        std::string guiName;
        /// A short help text
-       std::string helpText;
+       docstring helpText;
        /** The format of the input file. Can be "*", in which case we try and
         *   ascertain the format from the contents of the file.
         */
@@ -114,7 +112,7 @@ public:
        /** Map from the LyX name of the preamble definition to the preamble
         *  definition itself.
         */
-       typedef std::map<std::string, std::string> PreambleDefs;
+       typedef std::map<std::string, docstring> PreambleDefs;
 
        static TemplateManager & get();
 
@@ -126,12 +124,12 @@ public:
        /** return the preamble definition by LyX name.
         *  If it isn't found, return an empty std::string.
         */
-       std::string const getPreambleDefByName(std::string const & name) const;
+       docstring getPreambleDefByName(std::string const & name) const;
+       /// noncopyable
+       TemplateManager(TemplateManager const &) = delete;
+       void operator=(TemplateManager const &) = delete;
 private:
        TemplateManager();
-       /// noncopyable
-       TemplateManager(TemplateManager const &);
-       void operator=(TemplateManager const &);
 
        void readTemplates(support::FileName const & path);
        void dumpTemplates(std::ostream &) const;