2002-08-12 00:15:19 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2003-09-06 12:36:58 +00:00
|
|
|
* \file ParagraphList_fwd.h
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2003-09-06 12:36:58 +00:00
|
|
|
* \author Angus Leeming
|
2003-08-23 00:17:00 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
2002-08-12 00:15:19 +00:00
|
|
|
|
2003-09-06 12:36:58 +00:00
|
|
|
#ifndef PARAGRAPH_LIST_FWD_H
|
|
|
|
#define PARAGRAPH_LIST_FWD_H
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-03-23 20:11:06 +00:00
|
|
|
template <class T>
|
|
|
|
class RandomAccessList;
|
2003-09-06 12:36:58 +00:00
|
|
|
|
2006-03-23 20:11:06 +00:00
|
|
|
class Paragraph;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2006-03-23 20:11:06 +00:00
|
|
|
typedef RandomAccessList<Paragraph> ParagraphList;
|
2003-05-23 22:42:14 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
2002-08-12 00:15:19 +00:00
|
|
|
#endif
|