cloudy  trunk
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
init_coreload_postparse.cpp
Go to the documentation of this file.
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 /*InitCoreloadPostparse initialization at start, called from cloudy
4 * after parser, will be called one time per core load */
5 #include "cddefines.h"
6 #include "assertresults.h"
7 #include "init.h"
8 
9 /*InitCoreloadPostparse initialization at start, called from cloudy
10 * after parser, will be called one time per core load */
12 {
13 
14  static int nCalled = 0;
15 
16  DEBUG_ENTRY( "InitCoreloadPostparse()" );
17 
18  /* only do this once per coreload */
19  if( nCalled > 0 )
20  {
21  return;
22  }
23 
24  /* this is first call, increment the nCalled counter so we never do this again */
25  ++nCalled;
26 
29 
30  return;
31 }

Generated for cloudy by doxygen 1.8.3.1