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

Go to the source code of this file.

Classes

class  dictionary
 A list of keyword definitions, which are a keyword followed by a number of values (eg, words and numbers) or by a sub-dictionary. Since the dictionary format is used extensively throughout OpenFOAM for input/output files, there are many examples of its use. More...
 
class  dictionary::Searcher< Const >
 Generic const/non-const dictionary entry searcher. More...
 

Namespaces

 Foam
 Namespace for OpenFOAM.
 

Macros

#define defineDictionaryGetter(Func, Type)
 

Functions

Istream & operator>> (Istream &is, dictionary &dict)
 
Ostream & operator<< (Ostream &os, const dictionary &dict)
 
dictionary operator+ (const dictionary &dict1, const dictionary &dict2)
 Combine dictionaries. More...
 
dictionary operator| (const dictionary &dict1, const dictionary &dict2)
 Combine dictionaries. More...
 

Detailed Description

Original source file dictionary.H

Definition in file dictionary.H.

Macro Definition Documentation

◆ defineDictionaryGetter

#define defineDictionaryGetter (   Func,
  Type 
)
Value:
\
Type Func \
( \
const word& keyword, \
enum keyType::option matchOpt = keyType::REGEX \
) const \
{ \
return get<Type>(keyword, matchOpt); \
}

Definition at line 1499 of file dictionary.H.