X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathGridInfo.h;h=07ba78a9d95fc97fa75d7c14f575f699ca1e4f0e;hb=704328d3488c75733ddeb9ad5439b1907e323e39;hp=c9ad6b4a401d3381b0f061deb0a4c3f58cb62399;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/MathGridInfo.h b/src/mathed/MathGridInfo.h index c9ad6b4a40..07ba78a9d9 100644 --- a/src/mathed/MathGridInfo.h +++ b/src/mathed/MathGridInfo.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -15,13 +15,16 @@ #include +namespace lyx { + + class ColInfo { public: ColInfo() : align('c'), rightline(0), leftline(false) {} char align; // column alignment - std::string width; // column width - std::string special; // special column alignment + docstring width; // column width + docstring special; // special column alignment int rightline; // a line on the right? bool leftline; }; @@ -44,7 +47,7 @@ public: topline(false), bottomline(false) {} - std::string content; // cell content + docstring content; // cell content int multi; // multicolumn flag char align; // cell alignment bool leftline; // do we have a line on the left? @@ -60,4 +63,7 @@ inline char const * verbose_align(char c) } + +} // namespace lyx + #endif