phonebook class contact fonction print fonctionne

This commit is contained in:
hugogogo
2022-02-02 21:30:13 +01:00
parent cdd562216a
commit 9d45496f8b
14 changed files with 117 additions and 96 deletions

View File

@@ -0,0 +1,12 @@
#ifndef PHONEBOOK_CLASS_HPP
# define PHONEBOOK_CLASS_HPP
#include "Contact.class.cpp"
class PhoneBook {
public:
PhoneBook();
~PhoneBook();
Contact contact;
};
#endif