]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
move inset related stuff from src/graphics to src/inset/
[lyx.git] / src / insets / ExternalTemplate.h
index 505365d2244790a963b5af6fbab598da040d6f0e..91162912f2bc55d05b5d98af4ba12e212bd3fe52 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
@@ -45,6 +45,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,17 +64,17 @@ 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 boost::noncopyable {
+class ExternalTemplateManager : boost::noncopyable {
 public:
        /// Map from the LyX name of the template to the template structure
        typedef std::map<string, ExternalTemplate> Templates;
@@ -80,7 +82,7 @@ public:
        static ExternalTemplateManager & get();
        Templates & getTemplates();
        Templates const & getTemplates() const;
-       /// return the template by LyX name 
+       /// return the template by LyX name
        ExternalTemplate const & getTemplateByName(const string & name);
 private:
        ExternalTemplateManager();