casa
$Rev:20696$
|
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: BasicSL.h 20551 2009-03-25 00:11:33Z Malte.Marquarding $ 00027 00028 00029 #ifndef CASA_BASICSL_H 00030 #define CASA_BASICSL_H 00031 00032 #include <casa/BasicSL/Complexfwd.h> 00033 #include <casa/BasicSL/Complex.h> 00034 #include <casa/BasicSL/Constants.h> 00035 #include <casa/BasicSL/IComplex.h> 00036 #include <casa/BasicSL/RegexBase.h> 00037 #include <casa/BasicSL/String.h> 00038 00039 namespace casa { //# NAMESPACE CASA - BEGIN 00040 00041 // <module> 00042 // 00043 // <summary> Classes and global functions for standard library use </summary> 00044 00045 // <reviewed reviewer="" date="" demos=""> 00046 // </reviewed> 00047 00048 // <synopsis> 00049 // 00050 // This module is a bag of related standard library classes and 00051 // global functions. 00052 // 00053 // The following functionality is available: 00054 // <ul> 00055 // <li> Forward declarations 00056 // <linkto group="Complexfwd.h#Complexfwd"> 00057 // Complexfwd</linkto> 00058 // for complex numbers. 00059 // <li> Class <linkto group="Complex.h#Complex_desc"> 00060 // Complex</linkto> 00061 // to offer single and double precision complex numbers. 00062 // <li> Class <linkto class=IComplex:description> 00063 // IComplex</linkto> 00064 // for integer complex numbers. 00065 // <li> Value <linkto class=Dummy_Constants_class:description> 00066 // Constants</linkto> 00067 // to offer mathematical and numerical constants. 00068 // <li> Class <linkto class=RegexBase:description> 00069 // RegexBase</linkto> 00070 // to offer abstract interface to regular expressions for 00071 // <linkto class=String>String</linkto>. 00072 // <li> Class <linkto class=String:description> 00073 // String</linkto> 00074 // for handling character strings. 00075 // </ul> 00076 // 00077 // <note role=tip> You may want to look at the individual header files 00078 // to see whether you might not prefer to include only the header 00079 // files you really need; it may be more efficient to do so. 00080 // </note> 00081 // 00082 // </synopsis> 00083 00084 //# <todo asof="2005/06/08"> 00085 //# <li> 00086 //# </todo> 00087 00088 // </module> 00089 00090 00091 } //# NAMESPACE CASA - END 00092 00093 #endif 00094