File: mystdlib.h

package info (click to toggle)
netgen 6.2.2601%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,076 kB
  • sloc: cpp: 166,627; tcl: 6,310; python: 2,868; sh: 528; makefile: 90
file content (59 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (4)
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
49
50
51
52
53
54
55
56
57
58
59
#ifndef FILE_MYSTDLIB
#define FILE_MYSTDLIB

#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>


#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <cctype>
#include <ctime>
#include <cstring>
#include <climits>
#include <algorithm>
#include <memory>
#include <thread>
#include <mutex>
#include <atomic>
#include <optional>
#include <cassert>

#include <new>
#include <string>
#include <typeinfo>


#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

/*** Windows headers ***/
#ifdef _MSC_VER
# define WIN32_LEAN_AND_MEAN
# ifndef NO_PARALLEL_THREADS
#  ifdef MSVC_EXPRESS
#  else
// #   include <afxwin.h>
// #   include <afxmt.h>
#  endif // MSVC_EXPRESS
# endif
// # include <windows.h>
# undef WIN32_LEAN_AND_MEAN
// # include <winnt.h>
#else // Not using MC VC++
#endif


// using namespace std;
namespace netgen
{
  using namespace std;  
}


#endif