lyx_mirror/src/errorlist.h
Alfredo Braunstein 3508b30871 More errorlist adjustements.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7209 a592a061-630c-0410-9148-cb99ea01b6c8
2003-06-24 20:42:15 +00:00

52 lines
1.0 KiB
C++

// -*- C++ -*-
#ifndef ERRORLIST_H
#define ERRORLIST_H
/**
* \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
*/
#include "LString.h"
#include <vector>
class Buffer;
/// A class to hold an error item
struct ErrorItem {
string error;
string description;
int par_id;
int pos_start;
int pos_end;
ErrorItem(string const & error, string const & description,
int parid, int posstart, int 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