15 lines
195 B
C++
15 lines
195 B
C++
#ifndef PHONEBOOK_CLASS_HPP
|
|
# define PHONEBOOK_CLASS_HPP
|
|
|
|
#include "Contact.class.hpp"
|
|
#include <cstring>
|
|
|
|
class PhoneBook {
|
|
public:
|
|
PhoneBook();
|
|
~PhoneBook();
|
|
Contact contact;
|
|
};
|
|
|
|
#endif
|