]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMProject.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMProject.cpp
1 /*
2  * modelCDMProject.cpp
3  *
4  *  Created on: 13/11/2012
5  *      Author: daniel
6  */
7
8 #include "modelCDMProject.h"
9
10 modelCDMProject::modelCDMProject(std::string name, std::string path, unsigned char type, int level)
11 {
12   this->name = name;
13   this->path = path;
14   this->type = type;
15   this->level = level;
16 }
17