line.h

来自「PSP公交查询系统的公交数据管理。使用跨平台的QT作为开发工具。目前尚未全部完成」· C头文件 代码 · 共 30 行

H
30
字号
// Line.h: interface for the Line class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include <string>
using namespace std;
class Line  
{
public:
	string mName;
	string mUp;
	string mDown;
	string mComment;
	bool mIsSame;

	Line();
	Line(string name, string m_comment, string up, string down, bool isSame);
};

class Comment 
{
public:
	char mCity[20];
	char mAuthor[20];
	char mTime[20];
	char mComment[120];
	Comment();
	Comment(const char *city, const char * author, const char * time, const char * comment);
};

⌨️ 快捷键说明

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