Took out namespaces from headers.

This commit is contained in:
Harry Moffat 2011-03-28 20:18:37 +00:00
parent 905abc99af
commit 5de392c0a6
5 changed files with 4 additions and 12 deletions

View file

@ -13,7 +13,6 @@
#ifndef CT_AQUEOUSTRAN_H
#define CT_AQUEOUSTRAN_H
using namespace std;
// Cantera includes
#include "TransportBase.h"
@ -403,14 +402,14 @@ namespace Cantera {
* These express the temperature dependendence of the pures
* species viscosities.
*/
vector<vector_fp> m_visccoeffs;
std::vector<vector_fp> m_visccoeffs;
//! Polynomial coefficients of the conductivities
/*!
* These express the temperature dependendence of the pures
* species conductivities
*/
vector<vector_fp> m_condcoeffs;
std::vector<vector_fp> m_condcoeffs;
//! Polynomial coefficients of the binary diffusion coefficients
/*!
@ -418,7 +417,7 @@ namespace Cantera {
* binary diffusivities. An overall pressure dependence is then
* added.
*/
vector<vector_fp> m_diffcoeffs;
std::vector<vector_fp> m_diffcoeffs;
//! Internal value of the gradient of the mole fraction vector

View file

@ -19,8 +19,6 @@
#include <numeric>
#include <algorithm>
using namespace std;
// Cantera includes
#include "TransportBase.h"
#include "DenseMatrix.h"

View file

@ -21,8 +21,6 @@
#include <numeric>
#include <algorithm>
using namespace std;
// Cantera includes
#include "TransportBase.h"
#include "DenseMatrix.h"
@ -31,9 +29,6 @@ using namespace std;
namespace Cantera {
class LiquidTransportParams;

View file

@ -49,6 +49,7 @@
#include <cstdio>
#include <cstring>
using namespace std;
//! polynomial degree used for fitting collision integrals

View file

@ -19,7 +19,6 @@
#include <numeric>
#include <algorithm>
using namespace std;
// Cantera includes
#include "TransportBase.h"