]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathAtom.h
remove unneeded header.
[lyx.git] / src / mathed / MathAtom.h
index 757a9d33b986a3856d5ac376df7505f7786fe530..5a0adf8672488ba5110d3e38b8fe018fe3101776 100644 (file)
@@ -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