📄 line.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 + -