📄 mixture.h
字号:
//---------------------------------------------------------------------------
// Project: FlowLive
// Module: thermo
/*!\file mixture.h
\brief
\version 0.0.2.0
\date Created: 2005-01-18
\date Last modified: 2005-01-18
\author <a href="mailto:xtobias@gmx.net">Tobias Severin, xtobias@gmx.net</a>
*/
//---------------------------------------------------------------------------
#ifndef MIXTURE_H
#define MIXTURE_H
//---------------------------------------------------------------------------
#include <thermo/thermo.h>
#include <vector>
#include <string>
//---------------------------------------------------------------------------
THERMO_BEGIN
THERMO_EXPORT class cMixture
{
protected:
std::string itsName;
std::vector<std::string> itsSpecieNames;
std::vector<double> itsMassFractions;
public:
//! The constructor
cMixture();
//! The destructor
virtual ~cMixture();
//! Returns thet name of the mixture
std::string Name();
};
//---------------------------------------------------------------------------
THERMO_END
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -