2009-01-13 04:40:13 +05:00
|
|
|
#ifndef FILE_MYADT
|
|
|
|
#define FILE_MYADT
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/* File: myadt.hpp */
|
|
|
|
/* Author: Joachim Schoeberl */
|
|
|
|
/* Date: 01. Jun. 95 */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
include for all abstract data types
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "../include/mystdlib.h"
|
|
|
|
#include "../include/mydefs.hpp"
|
|
|
|
|
|
|
|
|
2018-11-29 22:35:30 +05:00
|
|
|
#include "../core/ngcore.hpp"
|
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
using namespace ngcore;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "ngexception.hpp"
|
|
|
|
#include "parthreads.hpp"
|
2009-08-25 20:00:20 +06:00
|
|
|
// #include "moveablemem.hpp"
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "dynamicmem.hpp"
|
|
|
|
|
|
|
|
#include "template.hpp"
|
|
|
|
#include "array.hpp"
|
|
|
|
#include "table.hpp"
|
|
|
|
#include "hashtabl.hpp"
|
2009-07-20 14:36:36 +06:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "bitarray.hpp"
|
|
|
|
#include "flags.hpp"
|
|
|
|
#include "spbita2d.hpp"
|
2009-07-20 14:36:36 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "seti.hpp"
|
|
|
|
#include "optmem.hpp"
|
|
|
|
#include "autoptr.hpp"
|
|
|
|
#include "sort.hpp"
|
|
|
|
#include "stack.hpp"
|
|
|
|
#include "mystring.hpp"
|
|
|
|
#include "profiler.hpp"
|
|
|
|
|
2009-01-25 17:14:08 +05:00
|
|
|
#include "mpi_interface.hpp"
|
|
|
|
#include "netgenout.hpp"
|
2013-02-26 18:59:12 +06:00
|
|
|
#include "gzstream.h"
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-04-19 21:02:27 +05:00
|
|
|
#include "ngsimd.hpp"
|
2016-07-06 21:12:57 +05:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|