wxString DiffCell::ToString() { MathCell* tmp = m_baseCell->m_next; wxString s = wxT("'diff("); if (tmp != NULL) s += tmp->ListToString(); s += m_diffCell->ListToString(); s += wxT(")"); return s; }
wxString DiffCell::ToString() { if (m_isBroken) return wxEmptyString; MathCell* tmp = m_baseCell->m_next; wxString s = wxT("'diff("); if (tmp != NULL) s += tmp->ListToString(); s += m_diffCell->ListToString(); s += wxT(")"); return s; }
wxString IntCell::ToString() { wxString s = wxT("integrate("); s += m_base->ListToString(); MathCell* tmp = m_var; wxString var; tmp = tmp->m_next; if (tmp != NULL) { var = tmp->ListToString(); } wxString to = m_over->ListToString(); wxString from = m_under->ListToString(); s += wxT(",") + var; if (m_intStyle == INT_DEF) s += wxT(",") + from + wxT(",") + to; s += wxT(")"); return s; }