mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Added forward declaration of friend functions
This commit is contained in:
@ -42,6 +42,13 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class coupledFacePair;
|
||||
|
||||
Ostream& operator<<(Ostream&, const coupledFacePair&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class coupledFacePair Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -45,6 +45,13 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class cv2DControls;
|
||||
|
||||
Ostream& operator<<(Ostream&, const cv2DControls&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class cv2DControls Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -44,6 +44,13 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class pointFeatureEdgesTypes;
|
||||
|
||||
Ostream& operator<<(Ostream&, const pointFeatureEdgesTypes&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class pointFeatureEdgesTypes Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -41,6 +41,14 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class indexedVertexEnum;
|
||||
|
||||
Istream& operator>>(Istream&, indexedVertexEnum&);
|
||||
Ostream& operator<<(Ostream&, const indexedVertexEnum&);
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
class indexedVertexEnum
|
||||
|
||||
Reference in New Issue
Block a user