mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: Initial state after latest Foundation merge
This commit is contained in:
@ -79,11 +79,7 @@ public:
|
||||
// Constructors
|
||||
|
||||
//- Construct from components
|
||||
Constant
|
||||
(
|
||||
const word& entryName,
|
||||
const Type& value
|
||||
);
|
||||
Constant(const word& entryName, const Type& value);
|
||||
|
||||
//- Construct from entry name and dictionary
|
||||
Constant(const word& entryName, const dictionary& dict);
|
||||
|
||||
@ -64,10 +64,10 @@ public:
|
||||
//- Enumeration for handling out-of-bound values
|
||||
enum boundsHandling
|
||||
{
|
||||
ERROR, /*!< Exit with a FatalError */
|
||||
WARN, /*!< Issue warning and clamp value (default) */
|
||||
CLAMP, /*!< Clamp value to the start/end value */
|
||||
REPEAT /*!< Treat as a repeating list */
|
||||
ERROR, //!< Exit with a FatalError
|
||||
WARN, //!< Issue warning and clamp value (default)
|
||||
CLAMP, //!< Clamp value to the start/end value
|
||||
REPEAT //!< Treat as a repeating list
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user