]> Creatis software - clitk.git/blob - vv/vvToolBaseBase.cxx
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vvToolBaseBase.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ===========================================================================**/
18
19 // vv
20 #include "vvToolBaseBase.h"
21
22 //------------------------------------------------------------------------------
23 #if __cplusplus > 199711L
24 void vvToolBaseBase::SaveState(std::shared_ptr<QXmlStreamWriter> & m_XmlWriter)
25 #else
26 void vvToolBaseBase::SaveState(std::auto_ptr<QXmlStreamWriter> & m_XmlWriter)
27 #endif
28
29   std::cerr << "SaveState not implemented for this tool." << std::endl; 
30 }
31 //------------------------------------------------------------------------------
32
33
34 //------------------------------------------------------------------------------
35 void vvToolBaseBase::InitializeNewTool(bool ReadStateFlag) { 
36   if (ReadStateFlag == true) {
37     std::cerr << "ReadState not implemented for this tool." << std::endl;
38   }
39 }
40 //------------------------------------------------------------------------------