2009-01-12 23:40:13 +00: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"
|
|
|
|
|
|
|
|
|
2019-07-11 14:22:48 +02:00
|
|
|
#include <core/ngcore.hpp>
|
2018-11-29 18:35:30 +01:00
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
using namespace ngcore;
|
2019-01-07 11:26:46 +01:00
|
|
|
using NgException = Exception;
|
2018-11-29 18:35:30 +01:00
|
|
|
}
|
2009-01-12 23:40:13 +00:00
|
|
|
#include "parthreads.hpp"
|
2009-08-25 14:00:20 +00:00
|
|
|
// #include "moveablemem.hpp"
|
2023-08-05 10:36:20 +02:00
|
|
|
// #include "dynamicmem.hpp"
|
2009-01-12 23:40:13 +00:00
|
|
|
|
|
|
|
#include "template.hpp"
|
2019-07-09 10:41:40 +02:00
|
|
|
#include "ngarray.hpp"
|
2009-01-12 23:40:13 +00:00
|
|
|
#include "table.hpp"
|
|
|
|
#include "hashtabl.hpp"
|
2009-07-20 08:36:36 +00:00
|
|
|
|
|
|
|
|
2019-08-28 14:00:49 +02:00
|
|
|
#include "ngbitarray.hpp"
|
2009-01-12 23:40:13 +00:00
|
|
|
#include "spbita2d.hpp"
|
2009-07-20 08:36:36 +00:00
|
|
|
|
2009-01-12 23:40:13 +00:00
|
|
|
#include "seti.hpp"
|
|
|
|
#include "optmem.hpp"
|
2023-03-12 22:24:21 +01:00
|
|
|
// #include "autoptr.hpp"
|
2009-01-12 23:40:13 +00:00
|
|
|
#include "sort.hpp"
|
|
|
|
#include "stack.hpp"
|
|
|
|
#include "mystring.hpp"
|
|
|
|
|
2022-05-06 18:21:37 +02:00
|
|
|
// #include "mpi_interface.hpp"
|
2009-01-25 12:14:08 +00:00
|
|
|
#include "netgenout.hpp"
|
2009-01-12 23:40:13 +00:00
|
|
|
|
|
|
|
#endif
|