]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMProjectsTreeNode.cpp
Feature #1763
[crea.git] / lib / creaDevManagerLib / modelCDMProjectsTreeNode.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ */ 
24
25
26 /*
27  * ModelCreaDevManagerTreeNode.cpp
28  *
29  *  Created on: 22/10/2012
30  *      Author: daniel
31  */
32
33 #include "modelCDMProjectsTreeNode.h"
34
35 modelCDMProjectsTreeNode::modelCDMProjectsTreeNode(std::string path, std::string name, unsigned char type, int level)
36 {
37   this->_path = path;
38   this->_name = name;
39   this->_type = type;
40   this->_level = level;
41 }
42
43 modelCDMProjectsTreeNode::~modelCDMProjectsTreeNode()
44 {
45 }
46
47 const std::string& modelCDMProjectsTreeNode::GetPath() const
48 {
49   return this->_path;
50 }
51
52 const std::string& modelCDMProjectsTreeNode::GetName() const
53 {
54   return this->_name;
55 }
56 const unsigned char& modelCDMProjectsTreeNode::GetType() const
57 {
58   return this->_type;
59 }
60
61 const int& modelCDMProjectsTreeNode::GetLevel() const
62 {
63   return this->_level;
64 }
65
66 const std::vector<modelCDMProjectsTreeNode>& modelCDMProjectsTreeNode::GetChildren() const
67 {
68   return this->_children;
69 }
70
71
72 void modelCDMProjectsTreeNode::SetChildren(std::vector<modelCDMProjectsTreeNode>& children)
73 {
74   this->_children.clear();
75   this->_children = children;
76 }