#pragma once #include "timer.h" namespace IPC { void listen_timer(bool* running, Timer* timer, StopWatch* stopwatch); void addTime(int64_t minutes); void clearTimer(); void startStopwatch(); void pauseResumeStopwatch(); void clearStopwatch(); void stop(); }