author | eilers <eilers> | 2003-11-17 15:57:10 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-11-17 15:57:10 (UTC) |
commit | 5228be0c7dfe6ce10330133fde6a5b15f836403b (patch) (side-by-side diff) | |
tree | af8e5771fce916db0544f23e5c513d3cb3d60c7b | |
parent | 3ba032c6a4833260ef6274b6b2bf6a6a9ccc2540 (diff) | |
download | opie-5228be0c7dfe6ce10330133fde6a5b15f836403b.zip opie-5228be0c7dfe6ce10330133fde6a5b15f836403b.tar.gz opie-5228be0c7dfe6ce10330133fde6a5b15f836403b.tar.bz2 |
Added #include QDateTime which is needed by this header file itself
-rw-r--r-- | libopie/pim/opimaccessbackend.h | 1 | ||||
-rw-r--r-- | libopie2/opiepim/backend/opimaccessbackend.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libopie/pim/opimaccessbackend.h b/libopie/pim/opimaccessbackend.h index c3d91f7..fd264fc 100644 --- a/libopie/pim/opimaccessbackend.h +++ b/libopie/pim/opimaccessbackend.h @@ -1,52 +1,53 @@ #ifndef OPIE_PIM_ACCESS_BACKEND #define OPIE_PIM_ACCESS_BACKEND #include <qarray.h> +#include <qdatetime.h> #include <opie/otemplatebase.h> #include <opie/opimrecord.h> class OPimAccessBackendPrivate; /** * OPimAccessBackend is the base class * for all private backends * it operates on OPimRecord as the base class * and it's responsible for fast manipulating * the resource the implementation takes care * of */ template <class T = OPimRecord> class OPimAccessBackend { public: typedef OTemplateBase<T> Frontend; /** The access hint from the frontend */ OPimAccessBackend(int access = 0); virtual ~OPimAccessBackend(); /** * load the resource */ virtual bool load() = 0; /** * reload the resource */ virtual bool reload() = 0; /** * save the resource and * all it's changes */ virtual bool save() = 0; /** * return an array of * all available uids */ virtual QArray<int> allRecords()const = 0; /** * return a List of records * that match the regex diff --git a/libopie2/opiepim/backend/opimaccessbackend.h b/libopie2/opiepim/backend/opimaccessbackend.h index c3d91f7..fd264fc 100644 --- a/libopie2/opiepim/backend/opimaccessbackend.h +++ b/libopie2/opiepim/backend/opimaccessbackend.h @@ -1,52 +1,53 @@ #ifndef OPIE_PIM_ACCESS_BACKEND #define OPIE_PIM_ACCESS_BACKEND #include <qarray.h> +#include <qdatetime.h> #include <opie/otemplatebase.h> #include <opie/opimrecord.h> class OPimAccessBackendPrivate; /** * OPimAccessBackend is the base class * for all private backends * it operates on OPimRecord as the base class * and it's responsible for fast manipulating * the resource the implementation takes care * of */ template <class T = OPimRecord> class OPimAccessBackend { public: typedef OTemplateBase<T> Frontend; /** The access hint from the frontend */ OPimAccessBackend(int access = 0); virtual ~OPimAccessBackend(); /** * load the resource */ virtual bool load() = 0; /** * reload the resource */ virtual bool reload() = 0; /** * save the resource and * all it's changes */ virtual bool save() = 0; /** * return an array of * all available uids */ virtual QArray<int> allRecords()const = 0; /** * return a List of records * that match the regex |