]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_rootinset.h
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_rootinset.h
index 200ddc7cc72e28db567761432e3979dd64c2f065..025304b3340947e48c034011a3c01e8bfb2f0625 100644 (file)
@@ -1,15 +1,13 @@
 // -*- C++ -*-
-/*
- *  File:        math_root.h
- *  Purpose:     Declaration of the root object 
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
- *  Created:     January 1999
- *  Description: Root math object
+/**
+ * \file math_rootinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  Copyright: 1999 Alejandro Aguilar Sierra
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *   You are free to use and modify this code under the terms of
- *   the GNU General Public Licence version 2 or later.
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef MATH_ROOT_H
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** The general n-th root inset.
-    \author Alejandro Aguilar Sierra
-    \version January 1999
- */
+/// The general n-th root inset.
 class MathRootInset : public MathNestInset {
 public:
        ///
        MathRootInset();
        ///
-       MathInset * clone() const;
-       ///
-       void draw(Painter &, int x, int y) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void write(MathWriteInfo & os) const;
+       bool idxUpDown(LCursor & cur, bool up) const;
        ///
-       void writeNormal(NormalStream &) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+
        ///
-       bool idxUp(int & idx, int & pos) const;
+       void write(WriteStream & os) const;
        ///
-       bool idxDown(int & idx, int & pos) const;
+       void normalize(NormalStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void octave(OctaveStream &) const;
 };
 
 #endif