| Polaris: AnyLogicalConst.h Source File | ||
|
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members
AnyLogicalConst.hGo to the documentation of this file.00001 /// 00002 /// \class AnyLogicalConst 00003 /// \brief Wildcard expression for .TRUE. or .FALSE. constants 00004 /// \defgroup Polaris 00005 /// \ingroup Polaris 00006 /// Base 00007 /// \see Wildcard/AnyLogicalConst.h 00008 /// \see Wildcard/Wildcard.cc 00009 /// \see Wildcard/AnyLogicalConst.h 00010 /// 00011 /// \endcode 00012 /// \section Description Description 00013 /// AnyLogicalConst is a wildcard expression which matches any 00014 /// any Fortran logical constant expression (i.e. .TRUE. or 00015 /// .FALSE.) - see LogicalConstExpr. 00016 /// 00017 /// For more details, please see Wildcard. 00018 /// 00019 #ifndef _ANY_LOGICAL_CONST_H 00020 #define _ANY_LOGICAL_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 AnyLogicalConst : public AnyOfSpecificType { 00031 public: 00032 AnyLogicalConst(); 00033 }; 00034 00035 #endif |
||
|