⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 solutionset.h

📁 爱因斯坦谜题
💻 H
字号:
// SolutionSet.h: interface for the CSolutionSet class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SOLUTIONSET_H__E268DAA7_D7E2_40BC_B3CE_0573AF88B89A__INCLUDED_)
#define AFX_SOLUTIONSET_H__E268DAA7_D7E2_40BC_B3CE_0573AF88B89A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "afx.h"
#include <afxtempl.h>
#include "Solution.h"

typedef CArray<CSolution, CSolution> CSolutionArray;

class CSolutionSet : public CSolutionArray
{
public:
	CSolutionSet& operator=(const CSolutionSet &sln);
	void Show(bool only_size=false) const;
	void Show(CString &buf, bool only_size=false) const;
};

#endif // !defined(AFX_SOLUTIONSET_H__E268DAA7_D7E2_40BC_B3CE_0573AF88B89A__INCLUDED_)

⌨️ 快捷键说明

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