root/branches/newmole/source/called.h

Revision 1739, 0.7 kB (checked in by rjrw, 12 months ago)

Merged from trunk r1700:1738

  • Property svn:eol-style set to native
Line 
1/* This file is part of Cloudy and is copyright (C)1978-2008 by Gary J. Ferland and
2 * others.  For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef _CALLED_H_
5#define _CALLED_H_
6
7/** called.h */
8EXTERN struct t_called {
9
10        /** should we print info?  usually true, set false with
11         * "print off" or "print quiet" commands */
12        bool lgTalk;   
13
14        /** saves inital value of lgTalk in case it needs to be reset */
15        bool lgTalkSave;
16
17        /** this is set true when cdTalk is called with false,
18         * means do not ever turn printout on again */
19        bool lgTalkForcedOff;
20
21        /** set true in cdInit, lgOptimize_do sets false when
22         * we want to make sure that print on does not turn on print */
23        bool lgTalkIsOK;
24
25        }       called;
26
27#endif /* _CALLED_H_ */
Note: See TracBrowser for help on using the browser.