//----------------------------------------------------------------------------- // File: StandardHeadersAndNamespace.h // Purpose: Includes the standard c-language header files // Author: Paul Mitiguy - April 1, 2007 //----------------------------------------------------------------------------- // The following are standard C/C++ header files. // If a filename is enclosed inside < > it means the header file is in the Include directory. // If a filename is enclosed inside " " it means the header file is in the current directory. //----------------------------------------------------------------------------- #ifndef __CSTANDARDHEADERS_H__ #define __CSTANDARDHEADERS_H__ //----------------------------------------------------------------------------- #include // Character Types #include // Mathematical Constants #include // Variable Argument Lists #include // Standard Input/Output Functions #include // Utility Functions #include // String Operations #include // Signals (Contol-C + Unix System Calls) #include // Nonlocal Goto (For Control-C) #include // Time and Date information #include // Verify Program Assertion #include // Error Codes (Used in Unix system()) #include // Floating Point Constants #include // Implementation Constants #include // Standard Definitions #include // Exception handling (e.g., try, catch throw) using namespace std; // Allow use of standard namespace without std::InFrontOfFunctions //----------------------------------------------------------------------------- #endif /* __CSTANDARDHEADERS_H__ */ //-----------------------------------------------------------------------------