cloudy  trunk
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
numderiv.h
Go to the documentation of this file.
1 /* This file is part of Cloudy and is copyright (C)1978-2017 by Gary J. Ferland and
2  * others. For conditions of distribution and use see copyright notice in license.txt */
3 
4 #ifndef NUMDERIV_H_
5 #define NUMDERIV_H_
6 
7 #include "module.h"
8 
9 /* numderiv.h */
10 struct t_NumDeriv : public module {
11  const char *chName() const
12  {
13  return "NumDeriv";
14  }
15  void zero();
16  void comment(t_warnings&) {}
17 
18  bool lgNumDeriv;
19  };
20 extern t_NumDeriv NumDeriv;
21 
22 
23 #endif /* NUMDERIV_H_ */
const char * chName() const
Definition: numderiv.h:11
bool lgNumDeriv
Definition: numderiv.h:18
void comment(t_warnings &)
Definition: numderiv.h:16
void zero()
Definition: numderiv.cpp:7
t_NumDeriv NumDeriv
Definition: numderiv.cpp:5
Definition: module.h:26