marKVolume.cpp

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003  Program:   wxMaracas
00004  Module:    $RCSfile: marKVolume.cpp,v $
00005  Language:  C++
00006  Date:      $Date: 2009/05/14 13:55:08 $
00007  Version:   $Revision: 1.1 $
00008 
00009   Copyright: (c) 2002, 2003
00010   License:
00011 
00012    This software is distributed WITHOUT ANY WARRANTY; without even
00013    the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00014    PURPOSE.  See the above copyright notice for more information.
00015 
00016 =========================================================================*/
00017 
00018 
00019 /* EED Borrame
00020 #ifdef _MSC_VER
00021 #pragma warning ( disable : 4786 )
00022 #pragma warning ( disable : 4251 )
00023 #endif //_MSC_VER
00024 */
00025 
00026 #include "marKVolume.h"
00027 
00028 // -------------------------------------------------------------------------
00029 marKVolume::marKVolume( ){
00030         _volume=NULL;
00031 }
00032 // -------------------------------------------------------------------------
00033 marKVolume::~marKVolume( ){
00034 }
00035 // -------------------------------------------------------------------------
00036 bool marKVolume::volumeLoaded( ) { 
00037         return( _volume != NULL ); 
00038 }
00039 // -------------------------------------------------------------------------    
00040 kVolume* marKVolume::getVolume( ) {     
00041         return( _volume ); 
00042 }
00043 // -------------------------------------------------------------------------    
00044 void marKVolume::setVolume(kVolume* vol ) {     
00045         _volume = vol; 
00046 }
00047 // -------------------------------------------------------------------------    
00048 bool marKVolume::load( std::ifstream& is ){
00049         // ToDo
00050         return true;
00051 }
00052 // -------------------------------------------------------------------------    
00053 bool marKVolume::save( std::ofstream& os ){
00054         // ToDo
00055         return true;
00056 }
00057 // -------------------------------------------------------------------------    
00058 void marKVolume::reset(){
00059 }
00060 

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1