#pragma once #include "Participant.h" #include class ParticipantRepo { private: std::string _file_name; std::vector _participants; void read_from_file(); public : ParticipantRepo(std::string file_name); ~ParticipantRepo()=default; std::vector get_all(); int size(); void write_to_file(); };