?? mime.h
字號(hào):
#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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -