X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_tabularinset.h;h=88224601b2efb5a67e9513c8200e2f86deabe97b;hb=b447408de232872fef1537fca542abc23702d572;hp=acf619078f4a4fb8e4c9fd758769f20fddba820e;hpb=2a5ab60ce880dea3719832844ee857275b837019;p=lyx.git diff --git a/src/mathed/math_tabularinset.h b/src/mathed/math_tabularinset.h index acf619078f..88224601b2 100644 --- a/src/mathed/math_tabularinset.h +++ b/src/mathed/math_tabularinset.h @@ -1,29 +1,32 @@ // -*- C++ -*- -#ifndef MATH_TABULARINSET_H -#define MATH_TABULARINSET_H - -#include "math_gridinset.h" - - /** - * Inset for things like \begin{tabular}...\end{tabular} + * \file math_tabularinset.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 + * Full author contact details are available in file CREDITS. */ +#ifndef MATH_TABULARINSET_H +#define MATH_TABULARINSET_H + +#include "math_gridinset.h" + + +/// Inset for things like \begin{tabular}...\end{tabular} class MathTabularInset : public MathGridInset { public: /// - MathTabularInset(string const &, int m, int n); + MathTabularInset(std::string const &, int m, int n); /// - MathTabularInset(string const &, int m, int n, - char valign, string const & halign); + MathTabularInset(std::string const &, int m, int n, + char valign, std::string const & halign); /// - MathTabularInset(string const &, char valign, string const & halign); + MathTabularInset(std::string const &, char valign, std::string const & halign); /// - InsetBase * clone() const; + virtual std::auto_ptr clone() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -42,7 +45,7 @@ public: private: /// - string name_; + std::string name_; }; #endif