X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftexrow.h;h=35a53be2f38ca71517202341d2414d1d1b321f12;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=6a8f4b0aa17f7059891310feda03e797b2b91b19;hpb=468560431fafad23fedd6d952421c622fe7874b6;p=lyx.git diff --git a/src/texrow.h b/src/texrow.h index 6a8f4b0aa1..35a53be2f3 100644 --- a/src/texrow.h +++ b/src/texrow.h @@ -1,19 +1,25 @@ // -*- C++ -*- /** * \file texrow.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Matthias Ettrich + * \author Lars Gullik Bjønnes + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ - #ifndef TEXROW_H #define TEXROW_H #include +namespace lyx { + + /// Represents the correspondence between paragraphs and the generated LaTeX file class TexRow { public: @@ -79,10 +85,6 @@ public: }; /// typedef std::list RowList; - /// increment position of all other RowItems - /// with same par id, to avoid placing error insets - /// at the same position - void increasePos(int id, int pos); private: /// number of lines unsigned int count; @@ -94,4 +96,7 @@ private: int lastpos; }; + +} // namespace lyx + #endif // TEXROW_H