X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathAtom.h;h=5a0adf8672488ba5110d3e38b8fe018fe3101776;hb=b9765984c0e2d38b251b765cabfc9d23bf957a7a;hp=757a9d33b986a3856d5ac376df7505f7786fe530;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/MathAtom.h b/src/mathed/MathAtom.h index 757a9d33b9..5a0adf8672 100644 --- a/src/mathed/MathAtom.h +++ b/src/mathed/MathAtom.h @@ -40,7 +40,9 @@ Andre' */ -class InsetBase; +namespace lyx { + +class Inset; class InsetMath; class MathAtom { @@ -49,7 +51,7 @@ public: // std::containers MathAtom(); /// the "real constructor" - explicit MathAtom(InsetBase * p); + explicit MathAtom(Inset * p); /// copy constructor, invokes nucleus_->clone() MathAtom(MathAtom const &); /// we really need to clean up @@ -70,4 +72,7 @@ private: InsetMath * nucleus_; }; + +} // namespace lyx + #endif