⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mime.cc

📁 客户端可以发送邮件到指定的信箱 服务器端可以接受邮件
💻 CC
字号:
/*	Name 		:	mime**	File			:	mime.cc**	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.1**	Note		:	**	Mail			:	delfour.kevin@free.fr**	Copyright	:	2007@DEKKA Studio*/#include <cstring>#include <iostream>#include <fstream>#include "inout.h"#include "mime.h"#include "mail.h"#include "pop.h"//CONSTRUCTEUR - DESTRUCTEURmime::mime() {	Content_type 	= "";	Encoding		= "";	Name			= "";	Content_Disposition	= "";		ligneentete	= 0;	lignedebut	= 0;	lignefin		= 0;}mime::~mime() {}//ACCESSEURSchar* mime::get_Content_type ()		{return Content_type;}char* mime::get_Encoding ()		{return Encoding;}char* mime::get_Content_Disposition ()	{return Content_Disposition;}char* mime::get_Name ()			{return Name;}void mime::set_Content_type (char* ct) 	  	{Content_type = ct;}void mime::set_Encoding (char* en)		  	{Encoding = en;}void mime::set_Content_Disposition (char* cd)	{Content_Disposition = cd;}void mime::set_Name (char* na) 	  		{Name=na;}void mime::set_ligneentete (int l) 		  	{ligneentete = l;}void mime::set_lignedebut (int l)				{lignedebut = l;}	void mime::set_lignefin (int l)			  	{lignefin = l;}//FONCTIONS//Affichage des informations d'un Mimevoid mime::affiche_mime(){	PRINT(Content_type);	PRINT(Encoding);	PRINT(Content_Disposition);	PRINT(Name);}

⌨️ 快捷键说明

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