mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
b5153b3d26
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22448 a592a061-630c-0410-9148-cb99ea01b6c8
35 lines
654 B
C++
35 lines
654 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FileNameList.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FILENAMELIST_H
|
|
#define FILENAMELIST_H
|
|
|
|
#include "support/FileName.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
|
|
/**
|
|
* Class for storing file name list.
|
|
* std::vector can not be forward declared in a simple way. Creating a class solves
|
|
* this problem.
|
|
*/
|
|
class FileNameList: public std::vector<FileName>
|
|
{
|
|
};
|
|
|
|
} // namespace support
|
|
} // namespace lyx
|
|
|
|
#endif // FILENAMELIST_H
|