MOOSE - Multiscale Object Oriented Simulation Environment
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Species.h
Go to the documentation of this file.
1 /**********************************************************************
2 ** This program is part of 'MOOSE', the
3 ** Messaging Object Oriented Simulation Environment.
4 ** Copyright (C) 2003-2011 Upinder S. Bhalla. and NCBS
5 ** It is made available under the terms of the
6 ** GNU Lesser General Public License version 2.1
7 ** See the file COPYING.LIB for the full notice.
8 **********************************************************************/
9 
10 #ifndef _SPECIES_H
11 #define _SPECIES_H
12 
19 class Species
20 {
21  public:
22  Species();
24  // Field assignment stuff
26 
27  void setMolWt( double v );
28  double getMolWt() const;
29 
31  // DestFinfo
33 
34  void handleMolWtRequest( const Eref& e );
35 
37  static const Cinfo* initCinfo();
38  private:
39  double molWt_;
40 };
41 
42 #endif // _SPECIES_H
void setMolWt(double v)
Definition: Species.cpp:96
static const Cinfo * initCinfo()
Definition: Species.cpp:21
void handleMolWtRequest(const Eref &e)
Definition: Species.cpp:87
Definition: Eref.h:26
double getMolWt() const
Definition: Species.cpp:101
double molWt_
Definition: Species.h:39
Definition: Cinfo.h:18
Species()
Definition: Species.cpp:77