X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathGridInfo.h;h=1c20e8d472c72ee3f61478eed067ebfe9aadf650;hb=58ab972f714309aa87e7d956ceda00e18337875f;hp=c9ad6b4a401d3381b0f061deb0a4c3f58cb62399;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/MathGridInfo.h b/src/mathed/MathGridInfo.h index c9ad6b4a40..1c20e8d472 100644 --- a/src/mathed/MathGridInfo.h +++ b/src/mathed/MathGridInfo.h @@ -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