~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Graphics/Mathematics/function.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100423070940-juy8n05xs1b6au8i
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  return f->derive (var); }
55
55
TMPL inline tree as_tree (function<F,T> f) {
56
56
  return f->expression (); }
57
 
TMPL inline ostream& operator << (ostream& out, function<F,T> f) {
 
57
TMPL inline tm_ostream& operator << (tm_ostream& out, function<F,T> f) {
58
58
  return out << as_math_string (as_tree (f)); }
59
59
 
60
60
TMPL