]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_funcliminset.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_funcliminset.C
index 472b6e0807279267cc3379f9d313a66ba3ac61b6..5221bbab36827438ece0a342fea8d84d2705d8ab 100644 (file)
@@ -1,9 +1,10 @@
-#include "math_funcliminset.h"
-#include "support.h"
-#include "support/LOstream.h"
+#include <config.h>
 
+#include "math_funcliminset.h"
+#include "math_mathmlstream.h"
+#include "math_streamstr.h"
+#include "math_support.h"
 
-using std::ostream;
 
 MathFuncLimInset::MathFuncLimInset(string const & name)
        : name_(name)
@@ -22,15 +23,15 @@ bool MathFuncLimInset::isScriptable() const
 }
 
 
-void MathFuncLimInset::write(MathWriteInfo & os) const
+void MathFuncLimInset::write(WriteStream & os) const
 {
        os << '\\' << name_ << ' ';
 }
 
 
-void MathFuncLimInset::writeNormal(ostream & os) const
+void MathFuncLimInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << "] ";
+       os << "[funclim " << name_ << ']';
 }