RealVector.h

Go to the documentation of this file.
00001 /*  _________________________________________________________________________
00002  *
00003  *  UTILIB: A utility library for developing portable C++ codes.
00004  *  Copyright (c) 2001, Sandia National Laboratories.
00005  *  This software is distributed under the GNU Lesser General Public License.
00006  *  For more information, see the README file in the top UTILIB directory.
00007  *  _________________________________________________________________________
00008  */
00009 
00019 #ifndef __RealVector_h
00020 #define __RealVector_h
00021 
00022 #include "real.h"
00023 
00029 #if REALType == DoubleType
00030 #include "DoubleVector.h"
00031 typedef DoubleVector RealVector ;
00032 #else
00033 #include "FloatVector.h"
00034 typedef FloatVector RealVector ;
00035 #endif
00036 
00037 #endif