]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileNameList.h
Use more informative descriptions fro Springer layouts
[lyx.git] / src / support / FileNameList.h
index 6cf61abc5c08038d86eb35f9b14bfc55fe16603f..894087d881af8c4068252c25a4901ecca7cdd089 100644 (file)
@@ -13,7 +13,6 @@
 #define FILENAMELIST_H
 
 #include "support/FileName.h"
-#include "EmbeddedFiles.h"
 
 #include <vector>
 
@@ -29,7 +28,13 @@ class FileNameList: public std::vector<FileName>
 {
 };
 
-class EmbeddedFileList: public std::vector<EmbeddedFile>
+
+/**
+ * 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>>
 {
 };