mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: added timeFunctionObject virtual class in inheritance hierarchy
- simply a functionObject with an additional Time reference, which is a combination frequently used by concrete functionObjects
This commit is contained in:
@ -102,12 +102,6 @@ Foam::functionObjects::logFiles::logFiles
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::functionObjects::logFiles::~logFiles()
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
const Foam::wordList& Foam::functionObjects::logFiles::names() const
|
||||
|
||||
@ -51,7 +51,7 @@ namespace functionObjects
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class logFiles Declaration
|
||||
Class functionObjects::logFiles Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class logFiles
|
||||
@ -116,7 +116,7 @@ public:
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~logFiles();
|
||||
virtual ~logFiles() = default;
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
Reference in New Issue
Block a user