cantera/src/equil/vcs_SpeciesProperties.cpp
Ray Speth 64983aaf16 Remove some unnecessary copy constructors and assignment operators
The implicitly-defined copy constructors and assignment operators work fine for
these classes.
2016-07-29 18:39:45 -04:00

26 lines
500 B
C++

/**
* @file vcs_SpeciesProperties.cpp
*/
#include "cantera/equil/vcs_SpeciesProperties.h"
using namespace std;
namespace Cantera
{
vcs_SpeciesProperties::vcs_SpeciesProperties(size_t indexPhase,
size_t indexSpeciesPhase,
vcs_VolPhase* owning) :
IndexPhase(indexPhase),
IndexSpeciesPhase(indexSpeciesPhase),
OwningPhase(owning),
SpeciesThermo(0),
WtSpecies(0.0),
Charge(0.0),
SurfaceSpecies(0),
VolPM(0.0),
ReferenceMoleFraction(1.0E-6)
{
}
}