cantera/Cantera/cxx/include/Cantera.h
Ray Speth d3c09984d0 Fixed some preprocessor directives for MinGW
The purpose of these changes is to make the distinction between
compiling under Windows (in which case _WIN32 is defined) and
compiling with the Microsoft compiler (in which case _MSC_VER is
defined). These changes are from the patch submitted by David
Fronczek.
2012-01-19 20:30:26 +00:00

44 lines
719 B
C++
Executable file

/**
* @file Cantera.h
* Basic include file to be used in all Cantera application
* environments.
*/
// Copyright 2001 California Institute of Technology
#ifndef CANTERA_H_INCL
#define CANTERA_H_INCL
namespace Cantera_CXX{ }
using namespace Cantera_CXX;
#include "kernel/ct_defs.h"
// some useful functions
#include "kernel/global.h"
// the CanteraError exception class
#include "kernel/ctexceptions.h"
//
//#include "kernel/importCTML.h"
// The Cantera logger class
#include "kernel/logger.h"
// Include the timer
#include "kernel/clockWC.h"
// Include routines for reading and writing XML files
#include "kernel/xml.h"
// Include string utility routines
#include "kernel/stringUtils.h"
#endif