]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
parlist-a-1.diff
[lyx.git] / src / insets / ExternalTemplate.h
index d643f5d4837b9645861d3bdc301ad4a7347c024e..a585cd1ce9bfcd06cce24f3801b8f18db83a1276 100644 (file)
@@ -1,20 +1,17 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file ExternalTemplate.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ * \author Asger Alstrup Nielsen
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef EXTERNALTEMPLATE_H
 #define EXTERNALTEMPLATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include <iosfwd>
 #include <map>
@@ -45,6 +42,8 @@ struct ExternalTemplate {
                string product;
                /// The shell command to produce a resulting file
                string updateCommand;
+               /// The filename of the resulting file
+               string updateResult;
                /// What features does this external inset require?
                string requirement;
                /// What should be inserted into the preamble
@@ -62,24 +61,26 @@ struct ExternalTemplate {
        Formats formats;
        ///
        void dumpFormats(std::ostream &) const;
-       
+
        /// We have to have default commands for safety reasons!
        ExternalTemplate();
-               
+
 };
 
 
 /**
    A singleton class that manages the external inset templates
 */
-class ExternalTemplateManager : public noncopyable {
+class ExternalTemplateManager : boost::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;
+       /// return the template by LyX name
+       ExternalTemplate const & getTemplateByName(const string & name);
 private:
        ExternalTemplateManager();
        void readTemplates(string const & path);
@@ -88,4 +89,3 @@ private:
 };
 
 #endif
-