//******************************************************************
// SPECIFICATION FILE (timetyp1.h)
//
// (This is for the first version of the TimeType class) 
//
// This file gives the specification
// of a TimeType abstract data type
//******************************************************************

class TimeType
{
public:
    void Set( int hours, int minutes, int seconds );

    void Increment();

    void Write() const;

private:
    int hrs;
    int mins;
    int secs;
};

