//******************************************************************
// SPECIFICATION FILE (exttime.h)
//******************************************************************
#include "time.h"

enum ZoneType {EST, CST, MST, PST, EDT, CDT, MDT, PDT};

class ExtTime : public Time
{
public:
    void Set( int hours, int minutes, int seconds, ZoneType timeZone );

    void Write() const;

    ExtTime( int initHrs, int initMins, int initSecs, ZoneType initZone );

    ExtTime();
private:
    ZoneType zone;
};

