/*========================================================================= Program: wxMaracas Module: $RCSfile: marKVolume.cpp,v $ Language: C++ Date: $Date: 2008/10/31 16:32:55 $ Version: $Revision: 1.1 $ Copyright: (c) 2002, 2003 License: This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /* EED Borrame #ifdef _MSC_VER #pragma warning ( disable : 4786 ) #pragma warning ( disable : 4251 ) #endif //_MSC_VER */ #include "marKVolume.h" // ------------------------------------------------------------------------- marKVolume::marKVolume( ){ _volume=NULL; } // ------------------------------------------------------------------------- marKVolume::~marKVolume( ){ } // ------------------------------------------------------------------------- bool marKVolume::volumeLoaded( ) { return( _volume != NULL ); } // ------------------------------------------------------------------------- kVolume* marKVolume::getVolume( ) { return( _volume ); } // ------------------------------------------------------------------------- void marKVolume::setVolume(kVolume* vol ) { _volume = vol; } // ------------------------------------------------------------------------- bool marKVolume::load( std::ifstream& is ){ // ToDo return true; } // ------------------------------------------------------------------------- bool marKVolume::save( std::ofstream& os ){ // ToDo return true; } // ------------------------------------------------------------------------- void marKVolume::reset(){ }