| [658] | 1 | /***************************************************************************
 | 
|---|
 | 2 |  * blitz/vecglobs.h      Global vector functions
 | 
|---|
 | 3 |  *
 | 
|---|
 | 4 |  * $Id: vecglobs.h,v 1.1.1.1 1999-11-26 16:37:05 ansari Exp $
 | 
|---|
 | 5 |  *
 | 
|---|
 | 6 |  * Copyright (C) 1997,1998 Todd Veldhuizen <tveldhui@seurat.uwaterloo.ca>
 | 
|---|
 | 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-suggest@cybervision.com
 | 
|---|
 | 19 |  * Bugs:                 blitz-bugs@cybervision.com
 | 
|---|
 | 20 |  *
 | 
|---|
 | 21 |  * For more information, please see the Blitz++ Home Page:
 | 
|---|
 | 22 |  *    http://seurat.uwaterloo.ca/blitz/
 | 
|---|
 | 23 |  *
 | 
|---|
 | 24 |  ***************************************************************************
 | 
|---|
 | 25 |  * $Log: not supported by cvs2svn $
 | 
|---|
 | 26 |  * Revision 1.1.1.1  1999/04/09  17:59:00  ansari
 | 
|---|
 | 27 |  * Creation module DPC/Blitz (blitz 0.4) Reza 09/04/99
 | 
|---|
 | 28 |  *
 | 
|---|
 | 29 |  * Revision 1.4  1998/03/14 00:04:47  tveldhui
 | 
|---|
 | 30 |  * 0.2-alpha-05
 | 
|---|
 | 31 |  *
 | 
|---|
 | 32 |  * Revision 1.3  1997/07/16 14:51:20  tveldhui
 | 
|---|
 | 33 |  * Update: Alpha release 0.2 (Arrays)
 | 
|---|
 | 34 |  *
 | 
|---|
 | 35 |  * Revision 1.2  1997/01/24 14:42:00  tveldhui
 | 
|---|
 | 36 |  * Periodic RCS update
 | 
|---|
 | 37 |  *
 | 
|---|
 | 38 |  * Revision 1.1  1997/01/13 22:19:58  tveldhui
 | 
|---|
 | 39 |  * Periodic RCS update
 | 
|---|
 | 40 |  *
 | 
|---|
 | 41 |  *
 | 
|---|
 | 42 |  */
 | 
|---|
 | 43 | 
 | 
|---|
 | 44 | #ifndef BZ_VECGLOBS_H
 | 
|---|
 | 45 | #define BZ_VECGLOBS_H
 | 
|---|
 | 46 | 
 | 
|---|
 | 47 | #ifndef BZ_VECTOR_H
 | 
|---|
 | 48 |  #include <blitz/vector.h>
 | 
|---|
 | 49 | #endif
 | 
|---|
 | 50 | 
 | 
|---|
 | 51 | #ifndef BZ_NUMTRAIT_H
 | 
|---|
 | 52 |  #include <blitz/numtrait.h>
 | 
|---|
 | 53 | #endif
 | 
|---|
 | 54 | 
 | 
|---|
 | 55 | #ifndef BZ_PROMOTE_H
 | 
|---|
 | 56 |  #include <blitz/promote.h>
 | 
|---|
 | 57 | #endif
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 | #ifndef BZ_EXTREMUM_H
 | 
|---|
 | 60 |  #include <blitz/extremum.h>
 | 
|---|
 | 61 | #endif
 | 
|---|
 | 62 | 
 | 
|---|
 | 63 | 
 | 
|---|
 | 64 | BZ_NAMESPACE(blitz)
 | 
|---|
 | 65 | 
 | 
|---|
 | 66 | BZ_NAMESPACE_END
 | 
|---|
 | 67 | 
 | 
|---|
 | 68 | #include <blitz/vecglobs.cc>
 | 
|---|
 | 69 | 
 | 
|---|
 | 70 | #endif // BZ_VECGLOBS_H
 | 
|---|