mime.h

来自「客户端可以发送邮件到指定的信箱 服务器端可以接受邮件」· C头文件 代码 · 共 55 行

H
55
字号
#ifndef MIME_H_#define MIME_H_/*	Name 		:	mime**	File		:	mime.h**	Author		:	DELFOUR Kevin - DUTEIL Julien**	Description	:	Librairie contenant toute les fonctions **					 et les informations necessaires**					pour l'utilisation du protocole POP et du MIME******	Version		:	3.0.2**	Note		:	**	Mail		:	delfour.kevin@free.fr**	Copyright	:	2007@DEKKA Studio*/class mime{	public:		char* Content_type;	//Type de la piece jointes		char* Encoding;		//Type d'encodage de la piece jointes		char* Name;		//Nom du fichier		char* Content_Disposition; //Attach or not?			int ligneentete;	//Fin de l'entete de la piece jointes		int lignedebut;		//Debut du corps		int lignefin;		//Fin du corps		public:	//CONSTRUCTEUR - DESTRUCTEUR		mime();		~mime();	//ACCESSEURS	char* get_Content_type ();	char* get_Encoding ();	char* get_Content_Disposition ();	char* get_Name ();	void set_Content_type (char* ct);	void set_Encoding (char* en);	void set_Content_Disposition (char* cd);	void set_Name (char* na);	void set_ligneentete (int l);	void set_lignedebut (int l);	void set_lignefin (int l);	//FONCTIONS	//Affichage des informations d'un Mime	void affiche_mime();};#endif	

⌨️ 快捷键说明

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