mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
moved reactingParcel base class to ReactingParcel
This commit is contained in:
@ -46,6 +46,7 @@ SourceFiles
|
||||
|
||||
#include "ThermoParcel.H"
|
||||
#include "ReactingCloud.H"
|
||||
#include "reactingParcel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -69,6 +70,7 @@ Ostream& operator<<
|
||||
template<class ParcelType>
|
||||
class ReactingParcel
|
||||
:
|
||||
public reactingParcel,
|
||||
public ThermoParcel<ParcelType>
|
||||
{
|
||||
public:
|
||||
|
||||
@ -38,7 +38,6 @@ SourceFiles
|
||||
#define BasicReactingMultiphaseParcel_H
|
||||
|
||||
#include "ReactingMultiphaseParcel.H"
|
||||
#include "reactingParcel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -57,7 +56,6 @@ class BasicReactingMultiphaseParcel;
|
||||
template<class ThermoType>
|
||||
class BasicReactingMultiphaseParcel
|
||||
:
|
||||
public reactingParcel,
|
||||
public ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >
|
||||
{
|
||||
|
||||
|
||||
@ -38,7 +38,6 @@ SourceFiles
|
||||
#define BasicReactingParcel_H
|
||||
|
||||
#include "ReactingParcel.H"
|
||||
#include "reactingParcel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -56,7 +55,6 @@ class BasicReactingParcel;
|
||||
template<class ThermoType>
|
||||
class BasicReactingParcel
|
||||
:
|
||||
public reactingParcel,
|
||||
public ReactingParcel<BasicReactingParcel<ThermoType> >
|
||||
{
|
||||
|
||||
|
||||
@ -38,7 +38,6 @@ SourceFiles
|
||||
#define BasicTrackedReactingParcel_H
|
||||
|
||||
#include "TrackedReactingParcel.H"
|
||||
#include "reactingParcel.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -56,7 +55,6 @@ class BasicTrackedReactingParcel;
|
||||
template<class ThermoType>
|
||||
class BasicTrackedReactingParcel
|
||||
:
|
||||
public reactingParcel,
|
||||
public TrackedReactingParcel<BasicTrackedReactingParcel<ThermoType> >
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user