28 lines
1.1 KiB
C++
28 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* Contact.hpp :+: :+: */
|
|
/* +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/03/20 10:48:38 by whaffman #+# #+# */
|
|
/* Updated: 2025/03/21 10:53:49 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Contact
|
|
{
|
|
public:
|
|
std::string firstName;
|
|
std::string lastName;
|
|
std::string nickname;
|
|
std::string darkestSecret;
|
|
|
|
Contact();
|
|
Contact(std::string fn, std::string ln, std::string nn, std::string ds);
|
|
static Contact newContact();
|
|
}; |