Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/ElmerGUI/netgen/libsrc/general/myadt.hpp
3206 views
1
#ifndef FILE_MYADT
2
#define FILE_MYADT
3
4
/**************************************************************************/
5
/* File: myadt.hpp */
6
/* Author: Joachim Schoeberl */
7
/* Date: 01. Jun. 95 */
8
/**************************************************************************/
9
10
/*
11
include for all abstract data types
12
*/
13
14
15
16
#include "../include/mystdlib.h"
17
#include "../include/mydefs.hpp"
18
19
20
namespace netgen
21
{
22
#include "ngexception.hpp"
23
#include "parthreads.hpp"
24
#include "moveablemem.hpp"
25
#include "dynamicmem.hpp"
26
27
#include "template.hpp"
28
#include "array.hpp"
29
#include "table.hpp"
30
#include "hashtabl.hpp"
31
#include "symbolta.hpp"
32
#include "bitarray.hpp"
33
#include "flags.hpp"
34
#include "spbita2d.hpp"
35
#include "seti.hpp"
36
#include "optmem.hpp"
37
#include "autoptr.hpp"
38
#include "sort.hpp"
39
#include "stack.hpp"
40
#include "mystring.hpp"
41
#include "profiler.hpp"
42
#include "netgenout.hpp"
43
44
}
45
46
#endif
47
48