bodypartformatter.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef __KMAIL_BODYPARTFORMATTER_H__
00033 #define __KMAIL_BODYPARTFORAMTTER_H__
00034
00035 class partNode;
00036
00037 namespace KMail {
00038
00039 class ObjectTreeParser;
00040 class ProcessResult;
00041
00042 class BodyPartFormatter {
00043 const BodyPartFormatter & operator=( const BodyPartFormatter & );
00044 BodyPartFormatter( const BodyPartFormatter & );
00045 protected:
00046 BodyPartFormatter() {}
00047 public:
00048 virtual ~BodyPartFormatter() {}
00049
00050 virtual bool process( ObjectTreeParser *, partNode *, ProcessResult & ) const = 0;
00051
00052 static const BodyPartFormatter * createFor( int type, int subtype );
00053 static const BodyPartFormatter * createFor( const char * type, const char * subtype );
00054 };
00055
00056 }
00057
00058 #endif // __KMAIL_BODYPARTFORMATTER_H__
This file is part of the documentation for kmail Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Mon Apr 26 23:23:18 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003