Remove unnecessary public/private/protected labels

This commit is contained in:
Ray Speth 2015-07-29 14:26:32 -04:00
parent f219b49e63
commit d24dfea036
15 changed files with 0 additions and 46 deletions

View file

@ -42,8 +42,6 @@ public:
protected:
bool m_ok;
XML_Node* m_r;
private:
};
}

View file

@ -61,8 +61,6 @@ protected:
bool m_ok;
XML_Node* m_r;
std::string m_id;
private:
};
}

View file

@ -33,8 +33,6 @@ public:
protected:
bool m_ok;
XML_Node* m_r;
private:
};
}

View file

@ -32,8 +32,6 @@ public:
protected:
bool m_ok;
XML_Node* m_r;
private:
};
}

View file

@ -204,8 +204,6 @@ public:
return cos(m_c * t);
}
virtual Func1& derivative() const;
protected:
};
/// exp
@ -239,9 +237,6 @@ public:
}
virtual Func1& derivative() const;
protected:
};
/// pow
@ -274,9 +269,6 @@ public:
return pow(t, m_c);
}
virtual Func1& derivative() const;
protected:
};
/**
@ -507,8 +499,6 @@ public:
virtual int order() const {
return 1;
}
protected:
};
/**
@ -584,7 +574,6 @@ public:
virtual int order() const {
return 0;
}
protected:
};
/**
@ -641,8 +630,6 @@ public:
virtual int order() const {
return 0;
}
protected:
};
@ -710,8 +697,6 @@ public:
virtual int order() const {
return 1;
}
protected:
};
/**
@ -779,8 +764,6 @@ public:
virtual int order() const {
return 2;
}
protected:
};
//
@ -837,7 +820,6 @@ public:
protected:
doublereal m_A, m_t0, m_tau;
private:
};
@ -1059,8 +1041,6 @@ public:
protected:
Func1* m_func;
private:
};
}

View file

@ -170,9 +170,6 @@ protected:
*/
std::vector<int> m_alg;
std::map<int, int> m_constrain;
private:
};
}

View file

@ -121,8 +121,6 @@ public:
setDensity(rho);
}
protected:
private:
doublereal m_press;
};

View file

@ -144,7 +144,6 @@ protected:
*/
virtual void calcDensity();
protected:
//! Set the temperature (K)
/*!
* This function sets the temperature, and makes sure that
@ -429,7 +428,6 @@ private:
*/
void readXMLCrossFluid(XML_Node& pureFluidParam);
private:
//! @internal Initialize the internal lengths in this object.
/*!
* Note this is not a virtual function and only handles this object
@ -473,7 +471,6 @@ public:
*/
virtual doublereal liquidVolEst(doublereal TKelvin, doublereal& pres) const;
public:
//! Calculates the density given the temperature and the pressure and a guess at the density.
/*!
* Note, below T_c, this is a multivalued function. We do not cross the vapor dome in this.

View file

@ -117,8 +117,6 @@ public:
return m_bandgap;
}
protected:
private:
doublereal m_press;
doublereal m_emass;

View file

@ -489,7 +489,6 @@ protected:
//! Dimensionless entropy at the (mtlast, m_p0)
mutable vector_fp m_s0_R;
protected:
/**
* @internal
* This crucial internal routine calls the species thermo

View file

@ -451,7 +451,6 @@ public:
virtual void getStandardVolumes_ref(doublereal* vol) const;
//@}
public:
//! @name Initialization Methods - For Internal use (VPStandardState)
/*!
* The following methods are used in the process of constructing
@ -536,8 +535,6 @@ protected:
doublereal m_P0;
// -> suggest making this private!
protected:
//! Pointer to the VPSS manager that calculates all of the standard state
//! info efficiently.
mutable VPSSMgr* m_VPSS_ptr;

View file

@ -175,7 +175,6 @@ private:
*/
void updateCond_T();
private:
//! vector of species thermal conductivities (W/m /K)
/*!
* These are used in wilke's rule to calculate the viscosity of the

View file

@ -689,7 +689,6 @@ private:
vector_fp m_fluxes;
private:
//! Boolean indicating that the top-level mixture viscosity is current
/*!
* This is turned false for every change in T, P, or C.

View file

@ -132,7 +132,6 @@ private:
*/
virtual void initSolidTransport(Transport* tr, thermo_t* thermo, int log_level=0);
private:
//! Static instance of the factor -> This is the only instance of this
//! object allowed
static TransportFactory* s_factory;

View file

@ -48,7 +48,6 @@ protected:
virtual ~XML_Error() throw() {
}
protected:
//! Line number of the file
int m_line;