mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: change wordRes to be a List of wordRe instead of a wrapper (issue #259)
- this permits direct storage of a list with additional matcher capabilities - provide wordRes::matcher class for similar behaviour as previously
This commit is contained in:
@ -36,6 +36,7 @@ SourceFiles
|
||||
#define structuredDecomp_H
|
||||
|
||||
#include "decompositionMethod.H"
|
||||
#include "wordRes.H"
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
@ -52,7 +53,7 @@ class structuredDecomp
|
||||
|
||||
dictionary methodDict_;
|
||||
|
||||
wordReList patches_;
|
||||
wordRes patches_;
|
||||
|
||||
autoPtr<decompositionMethod> method_;
|
||||
|
||||
@ -77,8 +78,7 @@ public:
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~structuredDecomp()
|
||||
{}
|
||||
virtual ~structuredDecomp() = default;
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
Reference in New Issue
Block a user