Main Page Class Hierarchy Alphabetical List Compound List Examples |
00001 /*************************************************************************** 00002 copyright : (C) 2002-2008 by Stefano Barbato 00003 email : stefano@codesink.org 00004 00005 $Id: mimeentitylist.h,v 1.8 2008-10-07 11:06:25 tat Exp $ 00006 ***************************************************************************/ 00007 #ifndef _MIMETIC_MIME_ENTITY_LIST_ 00008 #define _MIMETIC_MIME_ENTITY_LIST_ 00009 #include <list> 00010 #include <string> 00011 00012 namespace mimetic 00013 { 00014 00015 class MimeEntity; 00016 00017 /// List of MimeEntity classes 00018 typedef std::list<MimeEntity*> MimeEntityList; 00019 00020 00021 } 00022 00023 #endif