1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_00/ex01/includes/PhoneBook.hpp

23 lines
994 B
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* PhoneBook.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/26 00:41:10 by adjoly #+# #+# */
/* Updated: 2024/10/31 12:37:10 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "Contact.hpp"
class PhoneBook {
private:
Contact _contact[8];
public:
};