I have a class called Timer that contains, obviously, code to track running time. I want to include this class in another project but I can't figure out how.
I have tried using
#include "Timer.h"
as well as using the file path to the project with the timer class, i.e.
#include "/users/user/projects/TimerProject/timer.h"
But that hasn't worked either, it tells me the file can’t be found. Is there something I am missing here?