mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge remote-tracking branch 'origin/develop' into develop-pre-release
This commit is contained in:
@ -53,6 +53,16 @@ class ChemistryCombustion
|
||||
:
|
||||
public CombustionModel<ReactionThermo>
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Construct as copy (not implemented)
|
||||
ChemistryCombustion(const ChemistryCombustion<ReactionThermo>&) =
|
||||
delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const ChemistryCombustion<ReactionThermo>&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// Protected data
|
||||
|
||||
@ -55,6 +55,15 @@ class CombustionModel
|
||||
:
|
||||
public combustionModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Construct as copy (not implemented)
|
||||
CombustionModel(const CombustionModel&) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const CombustionModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Thermo type
|
||||
|
||||
@ -52,6 +52,15 @@ class ThermoCombustion
|
||||
:
|
||||
public CombustionModel<ReactionThermo>
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Construct as copy (not implemented)
|
||||
ThermoCombustion(const ThermoCombustion&) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const ThermoCombustion&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// Protected data
|
||||
|
||||
Reference in New Issue
Block a user