std:: fixes for toc

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4733 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-07-21 16:59:01 +00:00
parent 1c52d8f898
commit 16668d1632
5 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-07-21 John Levon <moz@compsoc.man.ac.uk>
* toc.[Ch]: std:: fixes
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* toc.[Ch]: new files, containing helper functions to handle table

View File

@ -1,3 +1,7 @@
2002-07-21 John Levon <moz@compsoc.man.ac.uk>
* FormToc.C: std:: fix
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* FormSendto.C:

View File

@ -24,6 +24,7 @@
#include <vector>
using std::vector;
using std::endl;

View File

@ -31,6 +31,9 @@
#include "debug.h"
using std::vector;
using std::max;
using std::endl;
using std::ostream;
extern LyXAction lyxaction;

View File

@ -20,6 +20,8 @@
#pragma interface
#endif
#include <config.h>
#include "support/LOstream.h"
#include "LString.h"
@ -65,7 +67,7 @@ TocList const getTocList(Buffer const *);
std::vector<string> const getTypes(Buffer const *);
///
void asciiTocList(string const &, Buffer const *, ostream &);
void asciiTocList(string const &, Buffer const *, std::ostream &);
/** Given the cmdName of the TOC param, returns the type used
by ControlToc::getContents() */