vparseline.h

来自「otl简单包装实现类,对数据库进行操作的,简单易用.」· C头文件 代码 · 共 37 行

H
37
字号
/***************************************************************************                          vparseline.h -  description                             -------------------    begin                : 2004-12-25    copyright            : (C) 2004 by LiuZhong    email                : easeliu@vip.sina.com.cn ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * *                                                                         * ***************************************************************************/#ifndef VPARSELINE_H#define VPARSELINE_Hclass VParseLine{private:	int m_LineSize;	char* m_pLine;	char* m_pName;	char* m_pValue;public:	VParseLine(int LineSize=256);	~VParseLine();	int ParseLine(const char* Line);	const char* Line();	const char*  Name();	const char* Value();};#endif

⌨️ 快捷键说明

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