]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
prepare for 1.1.6pre2
[lyx.git] / src / insets / ExternalTemplate.h
index 9b5566cb283091712f6506f5c0a21f3e195589cb..d643f5d4837b9645861d3bdc301ad4a7347c024e 100644 (file)
 #include <iosfwd>
 #include <map>
 #include "LString.h"
+#include <boost/utility.hpp>
 
 class LyXLex;
 
+///
 struct ExternalTemplate {
        /// What is the name of this template in the LyX format?
        string lyxName;
@@ -52,12 +54,13 @@ struct ExternalTemplate {
                /// This constructor has to default a command for safety reasons!
                FormatTemplate();
        };
+       ///
        void readTemplate(LyXLex &);
-       
+       ///
        typedef std::map<string, FormatTemplate> Formats;
-
+       ///
        Formats formats;
-
+       ///
        void dumpFormats(std::ostream &) const;
        
        /// We have to have default commands for safety reasons!
@@ -65,14 +68,15 @@ struct ExternalTemplate {
                
 };
 
+
 /**
* A singleton class that manages the external inset templates
- */
-class ExternalTemplateManager {
  A singleton class that manages the external inset templates
+*/
+class ExternalTemplateManager : public noncopyable {
 public:
        /// Map from the LyX name of the template to the template structure
        typedef std::map<string, ExternalTemplate> Templates;
-
+       
        static ExternalTemplateManager & get();
        Templates & getTemplates();
        Templates const & getTemplates() const;