#include #include "abstractWatchMode.h" #include "timeWatchMode.h" timeWatch::timeWatch (): clockObject () { pulse(); } timeWatch::~timeWatch () { } void timeWatch::pulse () { GetLocalTime(&timeNow); hour = timeNow.wHour; min = timeNow.wMinute; sec = timeNow.wSecond; }