filter.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KSYNC_FILTER_H
00022 #define KSYNC_FILTER_H
00023
00024 #include <qstring.h>
00025 #include <qstringlist.h>
00026 #include <qptrlist.h>
00027
00028 #include <syncer.h>
00029
00030 namespace KSync {
00031
00043 struct Filter {
00044 typedef QPtrList<Filter> PtrList;
00045 virtual QString name() = 0;
00046 virtual QStringList mimeTypes()const = 0;
00047
00048 virtual bool canFilter( Syncee* ) = 0;
00053 virtual Syncee* reconvert( Syncee* ) = 0;
00054 virtual Syncee* convert( Syncee* ) = 0;
00055 };
00056 }
00057
00058 #endif
This file is part of the documentation for kitchensync Library Version 3.3.2.