#ifndef PHONEBOOK_CLASS_HPP # define PHONEBOOK_CLASS_HPP #include "Contact.class.hpp" #include class PhoneBook { public: PhoneBook(); ~PhoneBook(); Contact contact; }; #endif