blitz  Version 0.9
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
vector-et.h
Go to the documentation of this file.
1 /***************************************************************************
2  * blitz/vector-et.h Vector<P_numtype> class + expression templates
3  *
4  * $Id: vector-et.h,v 1.2 2003/01/14 11:29:18 patricg Exp $
5  *
6  * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * Suggestions: blitz-dev@oonumerics.org
19  * Bugs: blitz-bugs@oonumerics.org
20  *
21  * For more information, please see the Blitz++ Home Page:
22  * http://oonumerics.org/blitz/
23  *
24  ***************************************************************************/
25 
26 #ifndef BZ_VECTOR_ET_H
27 #define BZ_VECTOR_ET_H
28 
29 #include <blitz/vector.h>
30 
31 // These are compile-time expensive things not included
32 // by <blitz/vector.h>, but needed if we want vector expressions.
33 
34 #include <blitz/vecbops.cc> // Operators with two operands
35 #include <blitz/vecuops.cc> // Functions with one argument
36 #include <blitz/vecbfn.cc> // Functions with two arguments
37 
38 #endif // BZ_VECTOR_ET_H
39