mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
added missing Ostream operators
This commit is contained in:
@ -328,6 +328,15 @@ public:
|
||||
static void readFields(ReactingCloud<ParcelType>& c);
|
||||
|
||||
static void writeFields(const ReactingCloud<ParcelType>& c);
|
||||
|
||||
|
||||
// Ostream Operator
|
||||
|
||||
friend Ostream& operator<< <ParcelType>
|
||||
(
|
||||
Ostream&,
|
||||
const ReactingParcel<ParcelType>&
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -300,6 +300,15 @@ public:
|
||||
static void readFields(ThermoCloud<ParcelType>& c);
|
||||
|
||||
static void writeFields(const ThermoCloud<ParcelType>& c);
|
||||
|
||||
|
||||
// Ostream Operator
|
||||
|
||||
friend Ostream& operator<< <ParcelType>
|
||||
(
|
||||
Ostream&,
|
||||
const ThermoParcel<ParcelType>&
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user