Click here to Skip to main content
15,886,799 members
Articles / Desktop Programming / ATL

XMLize Your Class

Rate me:
Please Sign up or sign in to vote.
4.17/5 (6 votes)
2 Apr 2001 244.1K   2K   40  
This article shows how to serialize a class into XML string.
#if !defined(AFX_DLLDATAX_H__54B5A531_E8E7_11D4_B97B_0008C79A1CDA__INCLUDED_)
#define AFX_DLLDATAX_H__54B5A531_E8E7_11D4_B97B_0008C79A1CDA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifdef _MERGE_PROXYSTUB

extern "C" 
{
BOOL WINAPI PrxDllMain(HINSTANCE hInstance, DWORD dwReason, 
	LPVOID lpReserved);
STDAPI PrxDllCanUnloadNow(void);
STDAPI PrxDllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv);
STDAPI PrxDllRegisterServer(void);
STDAPI PrxDllUnregisterServer(void);
}

#endif

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DLLDATAX_H__54B5A531_E8E7_11D4_B97B_0008C79A1CDA__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
India India
Dhandapani Ammasai(Dan in short) is a software delivery manager at a top tier IT company in India.

Comments and Discussions