]> git.lyx.org Git - lyx.git/blob - src/errorlist.h
Second Locale patch.
[lyx.git] / src / errorlist.h
1 // -*- C++ -*-
2 /**
3  * \file errorlist.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef ERRORLIST_H
13 #define ERRORLIST_H
14
15 #include "support/types.h"
16
17 #include <vector>
18 #include <string>
19
20 class Buffer;
21
22 /// A class to hold an error item
23 class ErrorItem {
24 public:
25         std::string error;
26         std::string description;
27         int par_id;
28         lyx::pos_type pos_start;
29         lyx::pos_type pos_end;
30         ErrorItem(std::string const & error, std::string const & description,
31                   int parid, lyx::pos_type posstart, lyx::pos_type posend);
32         ErrorItem();
33 };
34
35
36 class ErrorList : private std::vector<ErrorItem>
37 {
38 public:
39         ErrorList() : std::vector<ErrorItem> () {};
40
41         using std::vector<ErrorItem>::push_back;
42         using std::vector<ErrorItem>::end;
43         using std::vector<ErrorItem>::begin;
44         using std::vector<ErrorItem>::operator[];
45         using std::vector<ErrorItem>::size;
46         using std::vector<ErrorItem>::clear;
47         using std::vector<ErrorItem>::empty;
48         using std::vector<ErrorItem>::const_iterator;
49 };
50
51 #endif