/*
 * @topic T00291 <span style="background-color: yellow;">New: </span>Serial Date class (Spring 2014)
 * @brief Header file from Assignment a2
*/

// serial_date_utility.h

#ifndef SERIAL_DATE_UTILITY_H_INCLUDED
#define SERIAL_DATE_UTILITY_H_INCLUDED

#include <string>

using std::string;

int serial_julian_date( int Month, int Day, int Year );
int serial_2_month( int nDate );
int serial_2_day( int nDate );
int serial_2_year( int nDate );
int string_2_int( string str );

#endif // SERIAL_DATE_UTILITY_H_INCLUDED