gaparameters.h

来自「遗传算法做的排课系统」· C头文件 代码 · 共 23 行

H
23
字号

#ifndef __GA_PARAMETERS_H__
#define __GA_PARAMETERS_H__

#include "..\CallConvention.h"

namespace Common
{
	// Base class for all classes representing parameters of GA algorithm
	class GaParameters
	{

	public:

		// Virtual copy constructor
		virtual GaParameters* GACALL Clone() const=0;

	};// END CLASS DEFINITION GaParameters

} // Common

#endif //__GA_PARAMETERS_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?