Move some more #includes out of the header files.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7656 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-04 01:18:42 +00:00
parent a529232113
commit 2ea91e9359
5 changed files with 15 additions and 9 deletions

View File

@ -1,5 +1,9 @@
2003-09-04 Angus Leeming <leeming@lyx.org>
* insetfoot.h: move #include "LaTeXFeatures.h" out of the header file.
* insettabular.h: move #include "FuncStatus.h" out of the header file.
* insettoc.[Ch]: move #include "metricsinfo.h" out of the header file.
* insetcollapsable.h:
* insetbranch.C:
* insetnote.C: move #include "funcrequest.h" out of the header file.

View File

@ -13,8 +13,6 @@
#ifndef INSETFOOT_H
#define INSETFOOT_H
#include "LaTeXFeatures.h"
#include "insetfootlike.h"
/** The footnote inset

View File

@ -48,9 +48,9 @@
#include "inset.h"
#include "tabular.h"
#include "LString.h"
#include "FuncStatus.h"
#include "frontends/mouse_state.h"
class FuncStatus;
class LyXLex;
class Painter;
class BufferView;

View File

@ -9,15 +9,17 @@
*/
#include <config.h>
#include "gettext.h"
#include "insettoc.h"
#include "funcrequest.h"
#include "BufferView.h"
#include "debug.h"
#include "funcrequest.h"
#include "gettext.h"
#include "metricsinfo.h"
#include "toc.h"
#include "frontends/LyXView.h"
#include "frontends/Dialogs.h"
#include "debug.h"
#include "toc.h"
using std::vector;
using std::ostream;

View File

@ -14,7 +14,9 @@
#include "insetcommand.h"
#include "metricsinfo.h"
class MetricsInfo;
/** Used to insert table of contents
*/