/* This file is part of Cloudy and is copyright (C)1978-2013 by Gary J. Ferland and
 * others.  For conditions of distribution and use see copyright notice in license.txt */
/* out-of-line constructor for assert -- put breakpoint in this
   routine to trap assert throws for IDEs without built-in facility. */
#include "cddefines.h"

FILE *ioQQQ;
FILE *ioStdin;
FILE* ioPrnErr;
bool lgAbort;
bool lgTestCodeCalled; 
bool lgTestCodeEnabled;
bool lgPrnErr;
long int nzone;
double fnzone;
long int iteration;
bad_assert::bad_assert(const char* file, long line, const char* comment):
	p_file(file), p_line(line), p_comment(comment)
{
}
