Self-consistent header files.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7867 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-10-07 08:16:04 +00:00
parent e754163f00
commit a5ead24854
5 changed files with 13 additions and 3 deletions

View File

@ -12,6 +12,9 @@
#ifndef WORD_LANG_TUPLE_H #ifndef WORD_LANG_TUPLE_H
#define WORD_LANG_TUPLE_H #define WORD_LANG_TUPLE_H
#include <string>
/** /**
* A word and its given language code ("en_US"). * A word and its given language code ("en_US").
* This is used for spellchecking. * This is used for spellchecking.

View File

@ -13,6 +13,8 @@
#ifndef MENUBAR_H #ifndef MENUBAR_H
#define MENUBAR_H #define MENUBAR_H
#include <string>
/** /**
* The LyX GUI independent menubar class * The LyX GUI independent menubar class
* The GUI interface is implemented in the frontends * The GUI interface is implemented in the frontends

View File

@ -18,6 +18,8 @@
#include "Qt2BC.h" #include "Qt2BC.h"
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <string>
class ControlDocument; class ControlDocument;
class QDocumentDialog; class QDocumentDialog;

View File

@ -13,6 +13,7 @@
#define QLKEY_H #define QLKEY_H
#include <qnamespace.h> #include <qnamespace.h>
#include <string>
/** /**

View File

@ -12,13 +12,15 @@
#ifndef MATH_GRIDINFO_H #ifndef MATH_GRIDINFO_H
#define MATH_GRIDINFO_H #define MATH_GRIDINFO_H
#include <string>
struct ColInfo struct ColInfo
{ {
ColInfo() : align('c'), rightline(0), leftline(false) {} ColInfo() : align('c'), rightline(0), leftline(false) {}
char align; // column alignment char align; // column alignment
string width; // column width std::string width; // column width
string special; // special column alignment std::string special; // special column alignment
int rightline; // a line on the right? int rightline; // a line on the right?
bool leftline; bool leftline;
}; };
@ -39,7 +41,7 @@ struct CellInfo
topline(false), bottomline(false) topline(false), bottomline(false)
{} {}
string content; // cell content std::string content; // cell content
int multi; // multicolumn flag int multi; // multicolumn flag
char align; // cell alignment char align; // cell alignment
bool leftline; // do we have a line on the left? bool leftline; // do we have a line on the left?