xmlexport.h

来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架&gt」· C头文件 代码 · 共 27 行

H
27
字号
#ifndef XMLEXPORT_H#define XMLEXPORT_H#include <QString>class QObject;#include "xmlsupport.h"using namespace XmlSupport;/**   This version does not perform any file i/o -   just converts a QObject with properties   into an XML string representation.     @Deprecated - known Issues: This class is not meant to be used in conjunction   with the DataObjects library.*///startclass XMLExport { public:    virtual ~XMLExport() {}    virtual QString objectToXml(const QObject* ptr,                                int indentlevel=0);};//end#endif

⌨️ 快捷键说明

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