aboutsummaryrefslogtreecommitdiff
path: root/cpp00/ex01/PhoneBook.hpp
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-11-09 11:26:50 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-11-09 11:26:50 +0100
commitb799c007a1b6911fcbe5141429ea541e1277ebdd (patch)
treed70ad0826ad2fc2d635adf9afecf89af0838d20b /cpp00/ex01/PhoneBook.hpp
parent1e9d90bdf9ef5fc05093d3449d883597c7f896de (diff)
downloadpiscine_cpp-b799c007a1b6911fcbe5141429ea541e1277ebdd.tar.gz
piscine_cpp-b799c007a1b6911fcbe5141429ea541e1277ebdd.tar.bz2
piscine_cpp-b799c007a1b6911fcbe5141429ea541e1277ebdd.zip
Fixing some edge cases in cpp00 and cpp01, Updated formatting
Diffstat (limited to 'cpp00/ex01/PhoneBook.hpp')
-rw-r--r--cpp00/ex01/PhoneBook.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp00/ex01/PhoneBook.hpp b/cpp00/ex01/PhoneBook.hpp
index 8510710..abf83be 100644
--- a/cpp00/ex01/PhoneBook.hpp
+++ b/cpp00/ex01/PhoneBook.hpp
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 09:06:23 by charles #+# #+# */
-/* Updated: 2020/04/13 09:06:39 by charles ### ########.fr */
+/* Updated: 2020/11/09 09:28:38 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -22,16 +22,16 @@ class PhoneBook
{
public:
PhoneBook();
- void add(Contact contact);
- Contact* search(std::string needle);
- size_t getSize() const;
- Contact const &get(int index) const;
+ void add(Contact contact);
+ Contact* search(std::string needle);
+ size_t getSize() const;
+ Contact const& get(size_t index) const;
private:
Contact m_contacts[CONTACTS_SIZE];
- int m_size;
+ size_t m_size;
};
-std::ostream &operator<<(std::ostream &out, PhoneBook const &p);
+std::ostream& operator<<(std::ostream& out, PhoneBook const& p);
#endif