-
Notifications
You must be signed in to change notification settings - Fork 0
/
Template.cpp
62 lines (50 loc) · 2.2 KB
/
Template.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Template.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jferrer- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/20 22:38:27 by jferrer- #+# #+# */
/* Updated: 2022/09/20 22:38:38 by jferrer- ### ########.fr */
/* */
/* ************************************************************************** */
#include "Template.hpp"
// COPLIEN =====================================================================
/**
* @brief Constructor:
* The "Template".
*/
Template::Template() {}
/**
* @brief Copy:
* Copy the "Template".
*
* @param copy the "Template" to copy.
*/
Template::Template(const Template& copy) { (void)copy; }
/**
* @brief Destructor:
* Called when the object "Template" is delete
*/
Template::~Template() {}
Template & Template::operator=(const Template& op)
{
if (this == &op)
return (*this);
return (*this);
}
// =============================================================================
// GETTER - SETTER =============================================================
/**
* @brief Get plop of the "Template".
*
* @return the plop of the "Template".
*/
// =============================================================================
// ADDITIONNAL =================================================================
// =============================================================================
// EXCEPTIONS ==================================================================
// =============================================================================
// FUNCTIONS SUP ===============================================================
// =============================================================================