]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/kernel/include/marKVolume.cpp
BUG macOs
[creaMaracasVisu.git] / lib / maracasVisuLib / src / kernel / include / marKVolume.cpp
1 /*=========================================================================
2
3  Program:   wxMaracas
4  Module:    $RCSfile: marKVolume.cpp,v $
5  Language:  C++
6  Date:      $Date: 2009/05/14 13:55:08 $
7  Version:   $Revision: 1.1 $
8
9   Copyright: (c) 2002, 2003
10   License:
11
12    This software is distributed WITHOUT ANY WARRANTY; without even
13    the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14    PURPOSE.  See the above copyright notice for more information.
15
16 =========================================================================*/
17
18
19 /* EED Borrame
20 #ifdef _MSC_VER
21 #pragma warning ( disable : 4786 )
22 #pragma warning ( disable : 4251 )
23 #endif //_MSC_VER
24 */
25
26 #include "marKVolume.h"
27
28 // -------------------------------------------------------------------------
29 marKVolume::marKVolume( ){
30         _volume=NULL;
31 }
32 // -------------------------------------------------------------------------
33 marKVolume::~marKVolume( ){
34 }
35 // -------------------------------------------------------------------------
36 bool marKVolume::volumeLoaded( ) { 
37         return( _volume != NULL ); 
38 }
39 // -------------------------------------------------------------------------    
40 kVolume* marKVolume::getVolume( ) {     
41         return( _volume ); 
42 }
43 // -------------------------------------------------------------------------    
44 void marKVolume::setVolume(kVolume* vol ) {     
45         _volume = vol; 
46 }
47 // -------------------------------------------------------------------------    
48 bool marKVolume::load( std::ifstream& is ){
49         // ToDo
50         return true;
51 }
52 // -------------------------------------------------------------------------    
53 bool marKVolume::save( std::ofstream& os ){
54         // ToDo
55         return true;
56 }
57 // -------------------------------------------------------------------------    
58 void marKVolume::reset(){
59 }
60