Beam-lib  2.16.3
This is the Beam C++ class library.
BComplex.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * BComplex.h BEAM Array
3  * T.Barnaby, BEAM Ltd, 2009-09-10
4  * Copyright (c) 2012 All Right Reserved, Beam Ltd, http://www.beam.ltd.uk
5  *******************************************************************************
6  */
7 #ifndef BComplex_H
8 #define BComplex_H 1
9 
10 #include <BTypes.h>
11 #include <complex>
12 #include <algorithm>
13 
16 typedef std::complex<double> BComplex;
17 typedef std::complex<float> BComplex32;
18 typedef std::complex<double> BComplex64;
19 
20 #endif
std::complex< float > BComplex32
Definition: BComplex.h:17
std::complex< double > BComplex
Definition: BComplex.h:16
std::complex< double > BComplex64
Definition: BComplex.h:18