Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_NameSpaces / src / cpp / core / namespace / 02_classes / film / PersonnageFilm.cpp
1 #include "PersonnageFilm.h"
2
3 /**
4 * voir bd,tele pour une autre technique
5 */
6 using namespace film;
7
8 /*----------------------------------------------------------------------*\
9 |* Declaration *|
10 \*---------------------------------------------------------------------*/
11
12 /*--------------------------------------*\
13 |* Public *|
14 \*-------------------------------------*/
15
16 /*--------------------------------------*\
17 |* Private *|
18 \*-------------------------------------*/
19
20 /*----------------------------------------------------------------------*\
21 |* Implementation *|
22 \*---------------------------------------------------------------------*/
23
24 /*--------------------------------------*\
25 |* Constructeur *|
26 \*-------------------------------------*/
27
28 Personnage::Personnage(string name) : name(name)
29 {
30 //Nothing
31 }
32
33 Personnage::~Personnage()
34 {
35 //Nothing
36 }
37
38 /*--------------------------------------*\
39 |* Methode *|
40 \*-------------------------------------*/
41
42 string Personnage::getName() const
43 {
44 return this->name;
45 }
46
47 /*--------------------------------------*\
48 |* Private *|
49 \*-------------------------------------*/
50
51 /*----------------------------------------------------------------------*\
52 |* End *|
53 \*---------------------------------------------------------------------*/
54