mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
9080c44458
No scons and cmake support! scons and cmake need to find out the size of wchar_t and define this macro in config.h (example for 32bit wchar_t): * The size of a `wchar_t', as computed by sizeof. */ #define SIZEOF_WCHAR_T 4 * configure.ac: Test size of wchar_t * src/support/types.h: don't include docstring.h anymore. Use wchar_t as lyx::char_type if it is 32 bit wide. * src/support/docstring.h: Use lyx::char_type for defining docstring * src/metricsinfo.h: include support/docstring.h instead of support/types.h * src/lyxlex.h: ditto * src/frontends/font_metrics.h: ditto * src/frontends/qt4/qt_helpers.h: ditto * src/frontends/Painter.h: ditto * src/errorlist.h: ditto * src/support/lstrings.h: ditto * src/lyxfunc.h: ditto * src/LaTeX.h: ditto git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14991 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file errorlist.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alfredo Braunstein
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef ERRORLIST_H
|
|
#define ERRORLIST_H
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class Buffer;
|
|
|
|
/// A class to hold an error item
|
|
class ErrorItem {
|
|
public:
|
|
lyx::docstring error;
|
|
lyx::docstring description;
|
|
int par_id;
|
|
lyx::pos_type pos_start;
|
|
lyx::pos_type pos_end;
|
|
ErrorItem(lyx::docstring const & error, lyx::docstring const & description,
|
|
int parid, lyx::pos_type posstart, lyx::pos_type posend);
|
|
ErrorItem();
|
|
};
|
|
|
|
|
|
class ErrorList : private std::vector<ErrorItem>
|
|
{
|
|
public:
|
|
ErrorList() : std::vector<ErrorItem> () {};
|
|
|
|
using std::vector<ErrorItem>::push_back;
|
|
using std::vector<ErrorItem>::end;
|
|
using std::vector<ErrorItem>::begin;
|
|
using std::vector<ErrorItem>::operator[];
|
|
using std::vector<ErrorItem>::size;
|
|
using std::vector<ErrorItem>::clear;
|
|
using std::vector<ErrorItem>::empty;
|
|
using std::vector<ErrorItem>::const_iterator;
|
|
};
|
|
|
|
#endif
|