]> git.lyx.org Git - lyx.git/blob - src/support/FileNameList.h
6cf61abc5c08038d86eb35f9b14bfc55fe16603f
[lyx.git] / src / support / FileNameList.h
1 // -*- C++ -*-
2 /**
3  * \file FileNameList.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FILENAMELIST_H
13 #define FILENAMELIST_H
14
15 #include "support/FileName.h"
16 #include "EmbeddedFiles.h"
17
18 #include <vector>
19
20 namespace lyx {
21 namespace support {
22
23 /**
24  * Class for storing file name list.
25  * std::vector can not be forward declared in a simple way. Creating a class solves
26  * this problem.
27  */
28 class FileNameList: public std::vector<FileName>
29 {
30 };
31
32 class EmbeddedFileList: public std::vector<EmbeddedFile>
33 {
34 };
35
36 } // namespace support
37 } // namespace lyx
38
39 #endif // FILENAMELIST_H