// CodeTransfer.h: interface for the CCodeTransfer class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CODETRANSFER_H__FF8E1B28_AD7A_4FD4_9012_37F0FCB037FC__INCLUDED_)
#define AFX_CODETRANSFER_H__FF8E1B28_AD7A_4FD4_9012_37F0FCB037FC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CCodeTransfer  
{
public:
	CCodeTransfer();
	virtual ~CCodeTransfer();
public:
	static int utf8tomultibyte(const char *szUtf8, char *szmutibyte, int outbuflen);
	static int multibytetoutf8(const char *szmutibyte, char *szUtf8, int outbuflen);
};

#endif // !defined(AFX_CODETRANSFER_H__FF8E1B28_AD7A_4FD4_9012_37F0FCB037FC__INCLUDED_)
