| Polaris: AnyRealConst.h Source File | ||
|
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members
AnyRealConst.hGo to the documentation of this file.00001 /// 00002 /// \class AnyRealConst 00003 /// \brief Wildcard expression for REAL/DOUBLEPRECISION constants 00004 /// \defgroup Polaris 00005 /// \ingroup Polaris 00006 /// Base 00007 /// \see Wildcard/AnyRealConst.h 00008 /// \see Wildcard/Wildcard.cc 00009 /// \see Wildcard/AnyRealConst.h 00010 /// 00011 /// \endcode 00012 /// \section Description Description 00013 /// AnyRealConst is a wildcard expression which matches 00014 /// any Fortran REAL or DOUBLE PRECISION const expression 00015 /// (RealConstExpr). 00016 /// 00017 /// For more details, please see Wildcard. 00018 /// 00019 #ifndef _ANY_REAL_CONST_H 00020 #define _ANY_REAL_CONST_H 00021 /// 00022 #ifdef POLARIS_GNU_PRAGMAS 00023 #pragma interface 00024 #endif 00025 /// 00026 #ifndef _ANY_OF_SPECIFIC_TYPE_H 00027 #include "AnyOfSpecificType.h" 00028 #endif 00029 /// 00030 class AnyRealConst : public AnyOfSpecificType { 00031 public: 00032 AnyRealConst(); 00033 }; 00034 00035 #endif |
||
|