]> git.lyx.org Git - lyx.git/blob - src/support/FileNameList.h
prepare Qt 5.6 builds
[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
17 #include <vector>
18
19 namespace lyx {
20 namespace support {
21
22 /**
23  * Class for storing file name list.
24  * std::vector can not be forward declared in a simple way. Creating a class solves
25  * this problem.
26  */
27 class FileNameList: public std::vector<FileName>
28 {
29 };
30
31 } // namespace support
32 } // namespace lyx
33
34 #endif // FILENAMELIST_H