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

En/Decode MIME-Content with MimeSniffer

Rate me:
Please Sign up or sign in to vote.
4.88/5 (26 votes)
2 Dec 20022 min read 373.2K   7K   74  
RFC-compliant Mime-En/Decoder
// DefaultCoder.h: interface for the CDefaultCoder class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DEFAULTCODER_H__80927B76_F41C_4E9C_A2D4_9B39D3AAF6A2__INCLUDED_)
#define AFX_DEFAULTCODER_H__80927B76_F41C_4E9C_A2D4_9B39D3AAF6A2__INCLUDED_

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

#include "MIMECode.h"

class CDefaultCoder : public CMIMECode  
{
public:
	CDefaultCoder();
	virtual ~CDefaultCoder();

public:
	virtual void Decode(LPSTREAM pSource, LPSTREAM pDest);
	virtual void Encode(LPSTREAM pSource, LPSTREAM pDest);
};

#endif // !defined(AFX_DEFAULTCODER_H__80927B76_F41C_4E9C_A2D4_9B39D3AAF6A2__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.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions