]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileNameList.h
Add default output format for pLaTeX
[lyx.git] / src / support / FileNameList.h
index 20b6a85af7fd5ad5dfe341d0aa0ed7212649bf0c..894087d881af8c4068252c25a4901ecca7cdd089 100644 (file)
@@ -28,6 +28,16 @@ class FileNameList: public std::vector<FileName>
 {
 };
 
+
+/**
+ * List of filename with additional information. Used by the Bibfiles cache,
+ * which needs to store, next to the real filename, the way it was entered
+ * in the BibTeX inset (as abspath, relpath or texmf file)
+ */
+class FileNamePairList: public std::vector<std::pair<docstring, FileName>>
+{
+};
+
 } // namespace support
 } // namespace lyx