]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_gridinfo.h
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_gridinfo.h
index bc51b6028660f52c58f335383c769e357f09fec1..1950659a4f81747b1ac7cc0df73bae176cd6b0f4 100644 (file)
@@ -1,11 +1,25 @@
+// -*- 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 "support/std_string.h"
+
 struct ColInfo
 {
        ColInfo() : align('c'), rightline(0), leftline(false) {}
        char   align;      // column alignment
        string width;      // column width
+       string special;    // special column alignment
        int    rightline;  // a line on the right?
        bool   leftline;
 };