23 const word timeOpType,
24 const dictionary options)
25 : timeOpType_(timeOpType),
33 const word timeOpType,
34 const dictionary options)
38 dictionaryConstructorTable::iterator cstrIter =
39 dictionaryConstructorTablePtr_->find(timeOpType);
42 if (cstrIter == dictionaryConstructorTablePtr_->end())
50 <<
"Unknown DATimeOp type "
51 << timeOpType << nl << nl
52 <<
"Valid DATimeOp types:" << endl
53 << dictionaryConstructorTablePtr_->sortedToc()
58 return autoPtr<DATimeOp>(
59 cstrIter()(timeOpType, options));