compat.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KCAL_COMPAT_H
00021 #define KCAL_COMPAT_H
00022
00023 #include <qstring.h>
00024 #include <qdatetime.h>
00025
00026 namespace KCal {
00027
00028 class Compat;
00029
00030 class CompatFactory
00031 {
00032 public:
00033 static Compat *createCompat( const QString &productId );
00034 };
00035
00036 class Compat
00037 {
00038 public:
00039 Compat() {};
00040 virtual ~Compat() {};
00041
00042 virtual void fixFloatingEnd( QDate & ) {}
00043 };
00044
00045 class CompatPre31 : public Compat
00046 {
00047 public:
00048 void fixFloatingEnd( QDate & );
00049 };
00050
00051 }
00052
00053 #endif
This file is part of the documentation for kdelibs Version 3.1.4.