add method

void add(
  1. Time time
)

Implementation

void add(Time time) {
  seconds += time.getTotalSeconds();
  autofix();
}