/********************************************************************************************
ex3.cpp
    Developing the military time class
********************************************************************************************/
#include <iostream>
using namespace std;

#include "miltime.h"

void main() {
    miltime mtTest;

    mtTest.print();

    //Add 30 seconds to it and reprint it
    mtTest.addSecond(30);
    mtTest.print();

    //Add 30 minutes to it and print it
    mtTest.addMinute(30);
    mtTest.print();

    //Add 30 hours to it and print it
    mtTest.addHour(30);
    mtTest.print();
}