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
|
||||
|
||||
@ -44,6 +44,13 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class boundaryPatch;
|
||||
|
||||
Ostream& operator<<(Ostream&, const boundaryPatch&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class boundaryPatch Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -47,6 +47,13 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class curvedEdge;
|
||||
|
||||
Ostream& operator<<(Ostream&, const curvedEdge&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class curvedEdge Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -48,9 +48,19 @@ namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of classes
|
||||
|
||||
class polyPatch;
|
||||
class polyMesh;
|
||||
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class patchEdgeFaceInfo;
|
||||
|
||||
Istream& operator>>(Istream&, patchEdgeFaceInfo&);
|
||||
Ostream& operator<<(Ostream&, const patchEdgeFaceInfo&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class patchEdgeFaceInfo Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -53,6 +53,15 @@ namespace Foam
|
||||
class polyPatch;
|
||||
class polyMesh;
|
||||
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class patchEdgeFaceRegion;
|
||||
|
||||
Istream& operator>>(Istream&, patchEdgeFaceRegion&);
|
||||
Ostream& operator<<(Ostream&, const patchEdgeFaceRegion&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class patchEdgeFaceRegion Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -51,6 +51,15 @@ namespace Foam
|
||||
// Forward declaration of classes
|
||||
class polyMesh;
|
||||
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class patchEdgeFaceRegions;
|
||||
|
||||
Istream& operator>>(Istream&, patchEdgeFaceRegions&);
|
||||
Ostream& operator<<(Ostream&, const patchEdgeFaceRegions&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class patchEdgeFaceRegions Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -53,6 +53,15 @@ namespace Foam
|
||||
class polyPatch;
|
||||
class polyMesh;
|
||||
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class pointEdgePoint;
|
||||
|
||||
Istream& operator>>(Istream&, pointEdgePoint&);
|
||||
Ostream& operator<<(Ostream&, const pointEdgePoint&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class pointEdgePoint Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -48,6 +48,15 @@ namespace Foam
|
||||
class polyPatch;
|
||||
class polyMesh;
|
||||
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class cellInfo;
|
||||
|
||||
Istream& operator>>(Istream&, cellInfo&);
|
||||
Ostream& operator<<(Ostream&, const cellInfo&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class cellInfo Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -78,6 +78,14 @@ SourceFiles
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// Forward declaration of friend functions and operators
|
||||
|
||||
class coordinateSystem;
|
||||
|
||||
bool operator!=(const coordinateSystem&, const coordinateSystem&);
|
||||
Ostream& operator<<(Ostream&, const coordinateSystem&);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class coordinateSystem Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
Reference in New Issue
Block a user