Main Page   Class Hierarchy   Compound List   File List   Compound Members  

mime.h

00001 /*
00002  * Purpose: wxWindows mime implementation
00003  * Author:  Frank Buß
00004  * Created: 2002
00005  */
00006 
00007 #ifndef MIME_H
00008 #define MIME_H
00009 
00010 #include <wx/wx.h>
00011 #include <wx/filename.h>
00012 #include <wx/wfstream.h>
00013 
00017 class wxMimePart
00018 {
00019 public:
00026     wxMimePart(const wxFileName& fileName);
00027 
00032     void Encode(wxOutputStream& out);
00033 
00034 private:
00035     wxFileName m_fileName;
00036     wxString m_mainType;
00037     wxString m_subType;
00038 };
00039 
00040 WX_DECLARE_OBJARRAY(wxMimePart, wxArrayMimePart);
00041 
00042 #endif

Generated on Mon May 6 01:14:20 2002 for Wino by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001