Skip to content

Commit

Permalink
Update Calendar_IO.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mihirp161 authored Sep 21, 2019
1 parent dc18129 commit c3afd05
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Calendar_IO.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
Author: Mihir K Patel
Purpose: Following is a Header file for the CalendarIO.cpp. This inherits a parent class named Period.h
This contains function protypes. Few of the main prototypes are adjust_day_month(array, int), which
shifts the date to give an accurate result for the next Period. A static function
write_function(CalendarIO, array) which makes a CSV format calendar that reflects next Period with
a marker. A virtual function of overridden ostream<< that prints the results displaying date change and
expected date. Lastly, a friend function of istream>> that allows interaction with this class.
This contains function protypes. Few of the main prototypes are adjust_day_month(array, int), which
shifts the date to give an accurate result for the next Period. A static function
write_function(CalendarIO, array) which makes a CSV format calendar that reflects next Period with
a marker. A virtual function of overridden ostream<< that prints the results displaying date change and
expected date. Lastly, a friend function of istream>> that allows interaction with this class.
*/
#ifndef DOT_MATE_A_GUIDE_TO_MENSTRUATION_CALENDERIO
#define DOT_MATE_A_GUIDE_TO_MENSTRUATION_CALENDERIO
Expand Down Expand Up @@ -49,4 +49,4 @@ class CalendarIO :public Period
friend std::istream& operator>> (std::istream&, CalendarIO&); /*Prototype for istream friend function*/
~CalendarIO();
};
#endif // !DOT_MATE_A_GUIDE_TO_MENSTRUATION_CALENDERIO
#endif // !DOT_MATE_A_GUIDE_TO_MENSTRUATION_CALENDERIO

0 comments on commit c3afd05

Please sign in to comment.