Skip to content
Snippets Groups Projects
Commit a26932cf authored by Andrew Heather's avatar Andrew Heather
Browse files

added missing Ostream operators

parent 0a57fe20
Branches
Tags
No related merge requests found
...@@ -328,6 +328,15 @@ public: ...@@ -328,6 +328,15 @@ public:
static void readFields(ReactingCloud<ParcelType>& c); static void readFields(ReactingCloud<ParcelType>& c);
static void writeFields(const 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: ...@@ -300,6 +300,15 @@ public:
static void readFields(ThermoCloud<ParcelType>& c); static void readFields(ThermoCloud<ParcelType>& c);
static void writeFields(const ThermoCloud<ParcelType>& c); static void writeFields(const ThermoCloud<ParcelType>& c);
// Ostream Operator
friend Ostream& operator<< <ParcelType>
(
Ostream&,
const ThermoParcel<ParcelType>&
);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment