]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.C
some support for matrix operations with maple ('M-x math-extern maple evalm')
[lyx.git] / src / mathed / math_dotsinset.C
index 47a79a7d4a7d51d926b96df70fe0f50e019d41df..70e8de37b84461572fb2635c48aec8adb9236952 100644 (file)
@@ -3,10 +3,8 @@
 #endif
 
 #include "math_dotsinset.h"
-#include "mathed/support.h"
-#include "support/LOstream.h"
-
-using std::ostream;
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
 MathDotsInset::MathDotsInset(string const & name)
@@ -44,13 +42,13 @@ void MathDotsInset::metrics(MathMetricsInfo const & mi) const
 } 
 
 
-void MathDotsInset::write(MathWriteInfo & os) const
+void MathDotsInset::write(WriteStream & os) const
 {
-       os << '\\' << name_ << ' ';
+       os << '\\' << name_.c_str() << ' ';
 }
 
 
-void MathDotsInset::writeNormal(ostream & os) const
+void MathDotsInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << "] ";
+       os << "[" << name_.c_str() << "] ";
 }