cloudy  trunk
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
state.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 STATE_H_
5 #define STATE_H_
6 
7 #include "module.h"
8 
10 void state_get_put( const char chJob[] );
11 
12 struct t_state : public module {
13 
14  const char *chName() const
15  {
16  return "state";
17  }
18 
19  void zero();
20  void comment(t_warnings&) {}
21 
26 
29  bool lgGet_state ,
31 
33  bool lgPutAll;
34 
37 
38  };
39 
40 extern t_state state;
41 
42 
43 #endif /* STATE_H_ */
bool lgPut_state
Definition: state.h:29
void comment(t_warnings &)
Definition: state.h:20
char chPutFilename[INPUT_LINE_LENGTH]
Definition: state.h:24
Definition: state.h:12
bool lgPutAll
Definition: state.h:33
bool lgState_print
Definition: state.h:36
void zero()
Definition: state.cpp:22
const int INPUT_LINE_LENGTH
Definition: cddefines.h:301
const char * chName() const
Definition: state.h:14
t_state state
Definition: state.cpp:18
bool lgGet_state
Definition: state.h:29
void state_get_put(const char chJob[])
Definition: state.cpp:83
char chGetFilename[INPUT_LINE_LENGTH]
Definition: state.h:24
Definition: module.h:26