diff --git a/ex01/include/Contact.hpp b/ex01/include/Contact.hpp deleted file mode 100644 index df3392a..0000000 --- a/ex01/include/Contact.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include - -class Contact { - private: - std::string first_name; - std::string last_name; - std::string nickname; - std::string phone_number; - std::string darkest_secret; - - public: - Contact(std::string first_name, std::string last_name, std::string nickname, std::string phone_number, std::string darkest_secret); - - std::string to_string_partial() const; - std::string to_string_complete() const; -}; diff --git a/ex01/include/PhoneBook.hpp b/ex01/include/PhoneBook.hpp deleted file mode 100644 index 6782f01..0000000 --- a/ex01/include/PhoneBook.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "Contact.hpp" -#include - -class PhoneBook { - private: - Contact *contacts[8]; - - public: - size_t len; - - PhoneBook(); - ~PhoneBook(); - - void add_contact(Contact *new_contact); - void display_contacts(); - Contact* search(int index); -}; diff --git a/ex01/include/utils.hpp b/ex01/include/utils.hpp deleted file mode 100644 index aabb5da..0000000 --- a/ex01/include/utils.hpp +++ /dev/null @@ -1,3 +0,0 @@ -#include - -std::string truncated(const std::string str); diff --git a/ex01/t b/ex01/t deleted file mode 100644 index 0449fa8..0000000 --- a/ex01/t +++ /dev/null @@ -1,7 +0,0 @@ -ADD -fffffffffff -fff -f -f -f -SEARCH