]> git.lyx.org Git - lyx.git/blobdiff - src/errorlist.h
Move #includes out of header files.
[lyx.git] / src / errorlist.h
index 21a87b08ed14880efb3a09ba67a6e32d5015533d..e9023f2203f213355181a2208ff51272f7840f3f 100644 (file)
@@ -1,8 +1,4 @@
 // -*- C++ -*-
-
-#ifndef ERRORLIST_H
-#define ERRORLIST_H
-
 /**
  * \file errorlist.h
  * This file is part of LyX, the document processor.
  *
  * \author Alfredo Braunstein
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
+#ifndef ERRORLIST_H
+#define ERRORLIST_H
+
 #include "LString.h"
 
 #include <vector>
 
 class Buffer;
-class TeXErrors;
 
 /// A class to hold an error item
 struct ErrorItem {
@@ -36,7 +34,6 @@ class ErrorList : private std::vector<ErrorItem>
 {
 public:        
        ErrorList() : std::vector<ErrorItem> () {};
-       ErrorList(Buffer const & buf, TeXErrors const &);
 
        using std::vector<ErrorItem>::push_back;
        using std::vector<ErrorItem>::end;