2010年6月28日

C++ 工厂模式

摘要: 定义抽象类 class IParser { public: virtual bool GetStructData(PBYTE bufIn,DWORD bufLength,string cxmlString) = 0; virtual string CreateXMLData(PBYTE bufIn,DWORD bufLength) = 0; }; 派生类: class CGetUserInf... 阅读全文

posted @ 2010-06-28 15:46 酸辣大白菜 阅读(344) 评论(0) 推荐(0) 编辑

xml 解析库 msxml6.dll

摘要: xml 解析 无处不在,web编程时所用到的ajax 其它底层就是调用 的msxml.dll服务。#include "stdafx.h"#import "msxml6.dll"using namespace MSXML2;inline void TESTHR( HRESULT _hr ) { if FAILED(_hr) throw(_hr); }void XMLHttpRequestSample(){ MSXML2::IXMLHTTPRequestPtr pIXMLHTTPRequest = NULL; BSTR bstrString = NULL; 阅读全文

posted @ 2010-06-28 15:26 酸辣大白菜 阅读(1073) 评论(0) 推荐(0) 编辑

导航