Formatting of destructors
This commit is contained in:
parent
3d2d26334a
commit
aa0342f9a1
13 changed files with 30 additions and 29 deletions
|
@ -355,8 +355,7 @@ public:
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~polyPatch();
|
virtual ~polyPatch();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,6 @@ public:
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~cellZone();
|
virtual ~cellZone();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,6 @@ public:
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~faceZone();
|
virtual ~faceZone();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -209,7 +209,6 @@ public:
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~pointZone();
|
virtual ~pointZone();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -139,8 +139,7 @@ public:
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~fieldMinMax();
|
virtual ~fieldMinMax();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -174,8 +174,7 @@ public:
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~probes();
|
virtual ~probes();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -65,8 +65,7 @@ public:
|
||||||
basicMixture(const dictionary&, const fvMesh&, const objectRegistry&);
|
basicMixture(const dictionary&, const fvMesh&, const objectRegistry&);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~basicMixture();
|
virtual ~basicMixture();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -75,8 +75,7 @@ public:
|
||||||
pureMixture(const dictionary&, const fvMesh&, const objectRegistry&);
|
pureMixture(const dictionary&, const fvMesh&, const objectRegistry&);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
~pureMixture();
|
~pureMixture();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,7 @@ public:
|
||||||
return New(mesh, mesh);
|
return New(mesh, mesh);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~basicPsiThermo();
|
virtual ~basicPsiThermo();
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,11 @@ public:
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
//- Standard selection based on fvMesh
|
//- Standard selection based on fvMesh
|
||||||
static autoPtr<hsCombustionThermo> New(const fvMesh&, const objectRegistry&);
|
static autoPtr<hsCombustionThermo> New
|
||||||
|
(
|
||||||
|
const fvMesh&,
|
||||||
|
const objectRegistry&
|
||||||
|
);
|
||||||
|
|
||||||
static autoPtr<hsCombustionThermo> New(const fvMesh& mesh)
|
static autoPtr<hsCombustionThermo> New(const fvMesh& mesh)
|
||||||
{
|
{
|
||||||
|
|
|
@ -72,11 +72,15 @@ public:
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
//- Construct from dictionary and mesh
|
//- Construct from dictionary and mesh
|
||||||
reactingMixture(const dictionary&, const fvMesh&, const objectRegistry&);
|
reactingMixture
|
||||||
|
(
|
||||||
|
const dictionary&,
|
||||||
|
const fvMesh&,
|
||||||
|
const objectRegistry&
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
// Destructor
|
//- Destructor
|
||||||
|
|
||||||
virtual ~reactingMixture()
|
virtual ~reactingMixture()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
|
@ -137,7 +137,7 @@ public:
|
||||||
const scalarField& c
|
const scalarField& c
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
//- Reverse rate constant from the given formard rate constant
|
//- Reverse rate constant from the given forward rate constant
|
||||||
virtual scalar kr
|
virtual scalar kr
|
||||||
(
|
(
|
||||||
const scalar kfwd,
|
const scalar kfwd,
|
||||||
|
|
Reference in a new issue