]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
outstanding changes
[lyx.git] / src / insets / ExternalTemplate.h
index b9b0ae749a9cafecbd8964c2399cc20b1007220b..d289e7f6564284e1fdd6c31764b0930eb40f50b1 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
 #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!
@@ -67,9 +70,9 @@ struct ExternalTemplate {
 
 
 /**
* A singleton class that manages the external inset templates
- */
-class ExternalTemplateManager {
  A singleton class that manages the external inset templates
+*/
+class ExternalTemplateManager : boost::noncopyable {
 public:
        /// Map from the LyX name of the template to the template structure
        typedef std::map<string, ExternalTemplate> Templates;
@@ -77,6 +80,8 @@ public:
        static ExternalTemplateManager & get();
        Templates & getTemplates();
        Templates const & getTemplates() const;
+       /// return the template by LyX name 
+       ExternalTemplate const & getTemplateByName(const string & name);
 private:
        ExternalTemplateManager();
        void readTemplates(string const & path);
@@ -85,4 +90,3 @@ private:
 };
 
 #endif
-