dictionary.C File Reference
Include dependency graph for dictionary.C:

Go to the source code of this file.

Namespaces

 Foam
 Namespace for OpenFOAM.
 

Macros

#define IMPLEMENT_SPECIALISED_READ_TYPE(T, nullArg)
 
#define IMPLEMENT_SPECIALISED_READ_LIST_TYPE(T, nullArg)    IMPLEMENT_SPECIALISED_READ_TYPE(List<Foam::T>, nullArg)
 

Functions

 defineTypeNameAndDebug (dictionary, 0)
 

Detailed Description

Original source file dictionary.C

Definition in file dictionary.C.

Macro Definition Documentation

◆ IMPLEMENT_SPECIALISED_READ_TYPE

#define IMPLEMENT_SPECIALISED_READ_TYPE (   T,
  nullArg 
)
Value:
\
template<> \
Foam::T Foam::dictionary::readType \
( \
const word& keyword, \
const unitConversion& defaultUnits, \
ITstream& is \
) const \
{ \
return readTypeAndConvertUnits<T>(keyword, defaultUnits, is); \
} \
\
template<> \
Foam::T Foam::dictionary::readType \
( \
const word& keyword, \
ITstream& is \
) const \
{ \
return readTypeAndConvertUnits<T>(keyword, unitAny, is); \
}
const unitConversion unitAny
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)

Definition at line 286 of file dictionary.C.

◆ IMPLEMENT_SPECIALISED_READ_LIST_TYPE

#define IMPLEMENT_SPECIALISED_READ_LIST_TYPE (   T,
  nullArg 
)     IMPLEMENT_SPECIALISED_READ_TYPE(List<Foam::T>, nullArg)

Definition at line 309 of file dictionary.C.