]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_gridinfo.h
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_gridinfo.h
index 5d3e844767503e6e4bafb6ee2419825be5e9dfea..a33bd1fc83adc1d4786df8861c2bef03a8ccb48c 100644 (file)
@@ -1,12 +1,26 @@
+// -*- C++ -*-
+/**
+ * \file math_gridinfo.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_GRIDINFO_H
 #define MATH_GRIDINFO_H
 
+#include <string>
+
+
 struct ColInfo
 {
        ColInfo() : align('c'), rightline(0), leftline(false) {}
        char   align;      // column alignment
-       string width;      // column width
-       string special;    // special column alignment
+       std::string width;      // column width
+       std::string special;    // special column alignment
        int    rightline;  // a line on the right?
        bool   leftline;
 };
@@ -14,7 +28,7 @@ struct ColInfo
 
 struct RowInfo
 {
-       RowInfo() : topline(false), bottomline(false) {} 
+       RowInfo() : topline(false), bottomline(false) {}
        bool topline;     // horizontal line above
        int  bottomline;  // horizontal line below
 };
@@ -27,7 +41,7 @@ struct CellInfo
           topline(false), bottomline(false)
        {}
 
-       string content;    // cell content
+       std::string content;    // cell content
        int multi;         // multicolumn flag
        char align;        // cell alignment
        bool leftline;     // do we have a line on the left?