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
12namespace mimetic
13{
14
15class MimeEntity;
16
17/// List of MimeEntity classes
18typedef std::list<MimeEntity*> MimeEntityList;
19
20
21}
22
23#endif
Represent a MIME entity.
Definition mimeentity.h:38
Definition body.h:18
std::list< MimeEntity * > MimeEntityList
List of MimeEntity classes.
Definition mimeentitylist.h:18