mixture.h

来自「Flowlive The thermo library provides th」· C头文件 代码 · 共 48 行

H
48
字号
//---------------------------------------------------------------------------
//  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 + =
减小字号Ctrl + -
显示快捷键?