mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
23 lines
412 B
C
23 lines
412 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file ModuleList.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Richard Heck
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef LAYOUTMODULELIST_H
|
||
|
#define LAYOUTMODULELIST_H
|
||
|
|
||
|
#include <list>
|
||
|
#include <string>
|
||
|
|
||
|
namespace lyx {
|
||
|
///
|
||
|
typedef std::list<std::string> LayoutModuleList;
|
||
|
}
|
||
|
#endif
|