line.h
来自「CEL代码的中间编译」· C头文件 代码 · 共 38 行
H
38 行
// Line.h: interface for the CLine class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LINE_H__82D6667A_CBA2_4C33_9C4D_617311558E8D__INCLUDED_)
#define AFX_LINE_H__82D6667A_CBA2_4C33_9C4D_617311558E8D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CLine
{
public:
CString DrawWordX(int n);
BOOL Iswordcharx(char ch);
BOOL Iswordchar(char ch);
void Empty();
CLine();
CLine(CString outstring);
virtual ~CLine();
CString DrawWord(int n);
CString DrawWord(CString mystring, int n);
CString outline();
CString GetAllString();
BOOL IsTheEnd();
BOOL operator ==(CString string);
int GetiCount();
void InputLine(CString string);
protected:
CString line;
int iCount;//单词数
};
#endif // !defined(AFX_LINE_H__82D6667A_CBA2_4C33_9C4D_617311558E8D__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?