/*** Saeteurn, San ecst_sfs@ecst.csuchico.edu 15b Program 3: Telephone bill ***/ #include "call.h" Call::Call(int month,int day,string number,int minutes,Call *prev,Call *next) { m_month = month; m_day = day; m_number = number; m_minutes = minutes; m_next = next; m_prev = prev; } void Call::print() { cout << m_month << '/' << m_day << ": " << m_number << " " << m_minutes << endl; }