]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTemplate.h
* BufferParams:
[lyx.git] / src / insets / ExternalTemplate.h
index e7ad1521451c1997ca95d07d05cdaf0d5262c6b1..45f1b348ff66f8307acbdd83a497247de8876d42 100644 (file)
 
 #include <boost/utility.hpp>
 
+namespace lyx {
+
 class LyXLex;
 
-namespace lyx {
 namespace external {
 
 class Template {
@@ -70,7 +71,7 @@ public:
                /// The format of this file.
                std::string updateFormat;
                /// What features does this external inset require?
-               std::string requirement;
+               std::vector<std::string> requirements;
                /// A collection of preamble snippets identified by name.
                std::vector<std::string> preambleNames;
                /// A list of options to the basic command.
@@ -81,7 +82,7 @@ public:
                std::map<TransformID, TransformStore> option_transformers;
 
                typedef std::map<std::string,
-                                std::vector<std::string> > FileMap;
+                                std::vector<std::string> > FileMap;
                /// Referenced files for some formats
                FileMap referencedFiles;
        };