]> git.lyx.org Git - lyx.git/blobdiff - src/errorlist.h
hopefully fix tex2lyx linking.
[lyx.git] / src / errorlist.h
index 39ab893f7de747ade60650db8191be3e6693a6dc..8c91c42e32a3a3018ce1c6c15506e45b441bf210 100644 (file)
 #ifndef ERRORLIST_H
 #define ERRORLIST_H
 
-#include "support/types.h"
+#include "support/docstring.h"
 
 #include <vector>
 #include <string>
 
+
+namespace lyx {
+
 class Buffer;
 
 /// A class to hold an error item
 class ErrorItem {
 public:
-       lyx::docstring error;
-       lyx::docstring description;
+       docstring error;
+       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);
+       pos_type pos_start;
+       pos_type pos_end;
+       ErrorItem(docstring const & error, docstring const & description,
+                 int parid, pos_type posstart, pos_type posend);
        ErrorItem();
 };
 
@@ -48,4 +51,7 @@ public:
        using std::vector<ErrorItem>::const_iterator;
 };
 
+
+} // namespace lyx
+
 #endif