00001 //# BasicSL.h: Basic standard library related classes. 00002 //# Copyright (C) 2005 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id$ 00027 00028 00029 #ifndef CASA_BASICSL_H 00030 #define CASA_BASICSL_H 00031 00032 #include <casacore/casa/aips.h> 00033 00034 #include <casacore/casa/BasicSL/Complexfwd.h> 00035 #include <casacore/casa/BasicSL/Complex.h> 00036 #include <casacore/casa/BasicSL/Constants.h> 00037 #include <casacore/casa/BasicSL/IComplex.h> 00038 #include <casacore/casa/BasicSL/RegexBase.h> 00039 #include <casacore/casa/BasicSL/String.h> 00040 #include <casacore/casa/BasicSL/STLIO.h> 00041 #include <casacore/casa/BasicSL/STLMath.h> 00042 00043 namespace casacore { //# NAMESPACE CASACORE - BEGIN 00044 00045 // <module> 00046 // 00047 // <summary> Classes and global functions for standard library use </summary> 00048 00049 // <reviewed reviewer="" date="" demos=""> 00050 // </reviewed> 00051 00052 // <synopsis> 00053 // 00054 // This module is a bag of related standard library classes and 00055 // global functions. 00056 // 00057 // The following functionality is available: 00058 // <ul> 00059 // <li> Forward declarations 00060 // <linkto group="Complexfwd.h#Complexfwd"> 00061 // Complexfwd</linkto> 00062 // for complex numbers. 00063 // <li> Class <linkto group="Complex.h#Complex_desc"> 00064 // Complex</linkto> 00065 // to offer single and double precision complex numbers. 00066 // <li> Class <linkto class=IComplex:description> 00067 // IComplex</linkto> 00068 // for integer complex numbers. 00069 // <li> Value <linkto class=Dummy_Constants_class:description> 00070 // Constants</linkto> 00071 // to offer mathematical and numerical constants. 00072 // <li> Class <linkto class=RegexBase:description> 00073 // RegexBase</linkto> 00074 // to offer abstract interface to regular expressions for 00075 // <linkto class=String>String</linkto>. 00076 // <li> Class <linkto class=String:description> 00077 // String</linkto> 00078 // for handling character strings. 00079 // <li> STLMath.h has some functions doing math on std::vector objects. 00080 // <li> STLIO.h has some functions showing a container on std::ostream or LogIO. 00081 // </ul> 00082 // 00083 // <note role=tip> You may want to look at the individual header files 00084 // to see whether you might not prefer to include only the header 00085 // files you really need; it may be more efficient to do so. 00086 // </note> 00087 // 00088 // </synopsis> 00089 00090 //# <todo asof="2005/06/08"> 00091 //# <li> 00092 //# </todo> 00093 00094 // </module> 00095 00096 00097 } //# NAMESPACE CASACORE - END 00098 00099 #endif 00100