lyx_mirror/src/lyxrow_funcs.h
Angus Leeming b0a5773d95 Reduce 115 dependencies on RowList.h to just 10 dependencies on lyxrow.h.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7692 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-06 11:01:50 +00:00

35 lines
832 B
C++

// -*- C++ -*-
/**
* \file lyxrow_funcs.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LYXROW_FUNCS_H
#define LYXROW_FUNCS_H
#include "RowList_fwd.h"
#include "support/types.h"
class Paragraph;
bool isParEnd(Paragraph const & par, RowList::iterator rit);
lyx::pos_type lastPos(Paragraph const & par, RowList::iterator rit);
int numberOfSeparators(Paragraph const & par, RowList::iterator rit);
int numberOfHfills(Paragraph const & par, RowList::iterator rit);
int numberOfLabelHfills(Paragraph const & par, RowList::iterator rit);
bool hfillExpansion(Paragraph const & par, RowList::iterator rit,
lyx::pos_type pos);
#endif