00001 /********************************************************************** 00002 ** This program is part of 'MOOSE', the 00003 ** Messaging Object Oriented Simulation Environment. 00004 ** Copyright (C) 2003-2011 Upinder S. Bhalla. and NCBS 00005 ** It is made available under the terms of the 00006 ** GNU Lesser General Public License version 2.1 00007 ** See the file COPYING.LIB for the full notice. 00008 **********************************************************************/ 00009 00010 #ifndef _SPECIES_H 00011 #define _SPECIES_H 00012 00019 class Species 00020 { 00021 public: 00022 Species(); 00024 // Field assignment stuff 00026 00027 void setMolWt( double v ); 00028 double getMolWt() const; 00029 00031 // DestFinfo 00033 00034 void handleMolWtRequest( const Eref& e ); 00035 00037 static const Cinfo* initCinfo(); 00038 private: 00039 double molWt_; 00040 }; 00041 00042 #endif // _SPECIES_H