Main Page Class Hierarchy Alphabetical List Compound List Examples |
00001 /*************************************************************************** 00002 copyright : (C) 2002-2005 by Stefano Barbato 00003 email : stefano@codesink.org 00004 00005 $Id: mimeentitylist.h,v 1.7 2005/02/23 10:26:14 tat Exp $ 00006 ***************************************************************************/ 00007 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 #ifndef _MIMETIC_MIME_ENTITY_LIST_ 00017 #define _MIMETIC_MIME_ENTITY_LIST_ 00018 #include <list> 00019 #include <string> 00020 00021 namespace mimetic 00022 { 00023 00024 class MimeEntity; 00025 00026 /// List of MimeEntity classes 00027 typedef std::list<MimeEntity*> MimeEntityList; 00028 00029 00030 } 00031 00032 #endif