X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2FCutModule%2Fkernel%2FCutModelManager.cxx;h=17c633a2d85df361d7174369edb3541c1f352e3f;hb=3c6c4d236dd41550927d9180688f40c127301431;hp=23fdee919684fd55f50cd605c4693fb95dff47a1;hpb=c016f2efd20188d031f0bc29c5a2bb1aab959adf;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/CutModule/kernel/CutModelManager.cxx b/lib/maracasVisuLib/src/CutModule/kernel/CutModelManager.cxx index 23fdee9..17c633a 100644 --- a/lib/maracasVisuLib/src/CutModule/kernel/CutModelManager.cxx +++ b/lib/maracasVisuLib/src/CutModule/kernel/CutModelManager.cxx @@ -1,10 +1,35 @@ +/*# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Sant�) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ */ + /*========================================================================= Program: wxMaracas Module: $RCSfile: CutModelManager.cxx,v $ Language: C++ -Date: $Date: 2010/02/24 13:56:08 $ -Version: $Revision: 1.7 $ +Date: $Date: 2012/11/15 14:15:48 $ +Version: $Revision: 1.11 $ Copyright: (c) 2002, 2003 License: @@ -15,6 +40,8 @@ PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "CutModelManager.h" + +//Machete #include "CutModelMainPanel.h" /** @@ -140,7 +167,9 @@ void CutModelManager::ChangeShape(int id,int selection)throw( CutModelException) CutModelData* CutModelManager::getCutModelData(int id)throw( CutModelException){ CutModelData* current = NULL; - for(int i= 0; i < _vectordata.size();i++){ + int i; + for(i= 0; i < (int)_vectordata.size();i++) + { CutModelData* temp = _vectordata[i]; std::cout<<"id in CutModelManager:: "<getId()<getId()==id){ - for(int j = i; j < _vectordata.size()-1;j++){ + for(j = i; j < (int)_vectordata.size()-1;j++){ _vectordata[j]=_vectordata[j+1]; } i = _vectordata.size(); @@ -289,7 +320,7 @@ int CutModelManager::Undo() throw( CutModelException){ int CutModelManager::Redo() throw( CutModelException){ - if(_currentaction >= 0 && _currentaction < _undoredo.size()){ + if(_currentaction >= 0 && _currentaction < (int)_undoredo.size()){ CutModelSaveBinInfo* currentundo = _undoredo[_currentaction]; CutModelData* currentmodel; @@ -355,7 +386,7 @@ void CutModelManager::UpdatePolygon(bool mode) _polygonCutter = new CutModelPolygon(); - cout<<"RaC ContourDrawer::Update Printing points"<