📄 itylayout.h
字号:
// ityLayout.h: interface for the CityLayout class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ITYLAYOUT_H__E9DDC2F4_D615_4AB7_9C67_6D2B4F74040D__INCLUDED_)
#define AFX_ITYLAYOUT_H__E9DDC2F4_D615_4AB7_9C67_6D2B4F74040D__INCLUDED_
#include "global.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
typedef struct City
{
int x;
int y;
}CITY;
class CityLayout
{
private:
int bufferlength;
int* bufferstart;
public:
static double* initial();
int getDistance(int,int); //
CityLayout(int*,int);
CityLayout();
virtual ~CityLayout();
};
#endif // !defined(AFX_ITYLAYOUT_H__E9DDC2F4_D615_4AB7_9C67_6D2B4F74040D__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -