?? town.h
字號:
#ifndef _TOWN_H
#define _TOWN_H
#include "list.h"
#include <string>
using namespace std;
class town
{
private:
string townName;
list* edges;
public:
/* Constuctor and Destructor */
town();
~town();
void setTownName(string townName_Info);
string getTownName();
void setList(list* edges_Info);
void setList(double* data, int size, int townsize);
list* getList();
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -