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

📄 line.h

📁 PSP公交查询系统的公交数据管理。使用跨平台的QT作为开发工具。目前尚未全部完成。
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -