MOOSE - Multiscale Object Oriented Simulation Environment
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
LIF.h
Go to the documentation of this file.
1 /**********************************************************************
2 ** This program is part of 'MOOSE', the
3 ** Messaging Object Oriented Simulation Environment,
4 ** also known as GENESIS 3 base code.
5 ** copyright (C) 2003-2006 Upinder S. Bhalla. and NCBS
6 ** It is made available under the terms of the
7 ** GNU Lesser General Public License version 2.1
8 ** See the file COPYING.LIB for the full notice.
9 **********************************************************************/
10 
11 #ifndef _LIF_H
12 #define _LIF_H
13 
14 namespace moose
15 {
16 
20 class LIF: public IntFireBase
21 {
22 public:
23  LIF();
24  virtual ~LIF();
29  void vProcess( const Eref& e, ProcPtr p );
30 
34  void vReinit( const Eref& e, ProcPtr p );
35 
39  static const Cinfo* initCinfo();
40 };
41 
42 }
43 
44 #endif // _LIF_H
static const Cinfo * initCinfo()
Definition: LIF.cpp:19
Definition: LIF.h:20
void vProcess(const Eref &e, ProcPtr p)
Definition: LIF.cpp:60
LIF()
Definition: LIF.cpp:46
void vReinit(const Eref &e, ProcPtr p)
Definition: LIF.cpp:95
Definition: Eref.h:26
virtual ~LIF()
Definition: LIF.cpp:51
Definition: Cinfo.h:18