mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
operator<<(ostream &, xarray const &)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2183 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
18ed33949f
commit
adf2ae0835
@ -2,6 +2,8 @@
|
||||
|
||||
* math_parser.C: fix reading of "unusual" alpha chars
|
||||
|
||||
* xarray.[hC]: fix debug output of xarray
|
||||
|
||||
|
||||
2001-07-03 André Pönitz <poenitz@htwm.de>
|
||||
|
||||
|
@ -108,3 +108,9 @@ int MathXArray::width(int pos) const
|
||||
else
|
||||
return mathed_char_width(data_.GetCode(pos), style_, data_.GetChar(pos));
|
||||
}
|
||||
|
||||
std::ostream & operator<<(std::ostream & os, MathXArray const & ar)
|
||||
{
|
||||
os << ar.data_;
|
||||
}
|
||||
|
||||
|
@ -61,6 +61,6 @@ public:
|
||||
MathStyles style_;
|
||||
};
|
||||
|
||||
std::ostream & operator<<(std::ostream & os, MathArray const & ar);
|
||||
std::ostream & operator<<(std::ostream & os, MathXArray const & ar);
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user