vlocation.h
来自「compiler principle how to ananilyze」· C头文件 代码 · 共 31 行
H
31 行
// VLocation.h: interface for the VLocation class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_VLOCATION_H__5B58BF0D_8D12_4A6D_BEB4_583A2B4AB98A__INCLUDED_)
#define AFX_VLOCATION_H__5B58BF0D_8D12_4A6D_BEB4_583A2B4AB98A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <algorithm>
#include <vector>
using namespace std;
class VLocation {
public:
int row;
int column;
VLocation();
VLocation(int arow, int acolumn);
string toStr() const;
bool operator==(const VLocation& v) const;
};
typedef vector<VLocation> VLocationSet;
#endif // !defined(AFX_VLOCATION_H__5B58BF0D_8D12_4A6D_BEB4_583A2B4AB98A__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?