You can use the initializer list for that; no code needed:
Clock(const Clock& rClock) : hours(rClock.hours), isTicking(rClock.isTicking)
{
// no code needed
}
In fact, the compiler will provide this copy constructor by default, you don't even have to write this constructor!