// C++ code Copyright (C) David R. Evans G4AMJ/NQ0I

#ifndef T_ARRAYH
#define T_ARRAYH

// array templates for:

// big_array -- should be used only for code that requires "large"
// arrays and is to execute unchanged under DOS. "Large" here means
// that the total array size is > 64K.

// big_multi_array -- should be used only for code that requires
// "large" multidemnsional arrays and is to execute unchanged under
// DOS. "Large" here means arrays that will make substantial inroads
// into the 640K total memory.

// include different files for the various machines and compilers
#if (defined(__BORLANDC__) && defined(_Windows))
#include <t_ar_win.h>
#endif

#if (defined(__BORLANDC__) && (!defined(_Windows)))
#include <t_ar_dos.h>
#endif

#if (defined(__GNUC__))
#include <t_ar_sun.h>
#endif

#if (defined(macintosh))
#include <t_ar_mac.h>
#endif

#endif
