File: myadt.hpp

package info (click to toggle)
gmsh 2.7.0.dfsg-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 37,484 kB
  • sloc: cpp: 424,429; ansic: 163,073; yacc: 4,703; java: 1,371; makefile: 838; perl: 814; fortran: 531; lex: 358; python: 297; xml: 104; sh: 58; modula3: 32
file content (48 lines) | stat: -rw-r--r-- 1,056 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#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"


#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 "mpi_interface.hpp"
#include "netgenout.hpp"


#endif