Main Page   Class Hierarchy   Alphabetical List   Compound List   Examples  
mimeentitylist.h
1 /***************************************************************************
2  copyright : (C) 2002-2008 by Stefano Barbato
3  email : stefano@codesink.org
4 
5  $Id: mimeentitylist.h,v 1.8 2008-10-07 11:06:25 tat Exp $
6  ***************************************************************************/
7 #ifndef _MIMETIC_MIME_ENTITY_LIST_
8 #define _MIMETIC_MIME_ENTITY_LIST_
9 #include <list>
10 #include <string>
11 
12 namespace mimetic
13 {
14 
15 class MimeEntity;
16 
17 /// List of MimeEntity classes
18 typedef std::list<MimeEntity*> MimeEntityList;
19 
20 
21 }
22 
23 #endif
Represent a MIME entity.
Definition: mimeentity.h:37
std::list< MimeEntity * > MimeEntityList
List of MimeEntity classes.
Definition: mimeentitylist.h:15