DATRW++ library: seismic data I/O with multiple formats
types.h
Go to the documentation of this file.
1 /*! \file types.h
2  * \brief internal data types (prototypes)
3  *
4  * ----------------------------------------------------------------------------
5  *
6  * \author Thomas Forbriger
7  * \date 06/10/2011
8  *
9  * internal data types (prototypes)
10  *
11  * Copyright (c) 2011 by Thomas Forbriger (BFO Schiltach)
12  *
13  * ----
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27  * ----
28  *
29  * REVISIONS and CHANGES
30  * - 06/10/2011 V1.0 Thomas Forbriger
31  *
32  * ============================================================================
33  */
34 
35 // include guard
36 #ifndef DATRW_TYPES_H_VERSION
37 
38 #define DATRW_TYPES_H_VERSION \
39  "DATRW_TYPES_H V1.0"
40 
41 #include <aff/series.h>
42 
43 namespace datrw {
44 
45  typedef aff::Series<double> Tdseries;
46  typedef aff::Series<float> Tfseries;
47  typedef aff::Series<int> Tiseries;
48 
49 } // namespace datrw
50 
51 #endif // DATRW_TYPES_H_VERSION (includeguard)
52 
53 /* ----- END OF types.h ----- */
aff::Series< float > Tfseries
Definition: types.h:46
aff::Series< double > Tdseries
Definition: types.h:45
Root namespace of library.
Definition: aalibdatrwxx.cc:16
aff::Series< int > Tiseries
Definition: types.h:47