mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
|
#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"
|
||
|
|
||
|
|
||
|
namespace netgen
|
||
|
{
|
||
|
#include "ngexception.hpp"
|
||
|
#include "parthreads.hpp"
|
||
|
#include "moveablemem.hpp"
|
||
|
#include "dynamicmem.hpp"
|
||
|
|
||
|
#include "template.hpp"
|
||
|
#include "array.hpp"
|
||
|
#include "table.hpp"
|
||
|
#include "hashtabl.hpp"
|
||
|
#include "symbolta.hpp"
|
||
|
#include "bitarray.hpp"
|
||
|
#include "flags.hpp"
|
||
|
#include "spbita2d.hpp"
|
||
|
#include "seti.hpp"
|
||
|
#include "optmem.hpp"
|
||
|
#include "autoptr.hpp"
|
||
|
#include "sort.hpp"
|
||
|
#include "stack.hpp"
|
||
|
#include "mystring.hpp"
|
||
|
#include "profiler.hpp"
|
||
|
#include "netgenout.hpp"
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|