From 41fa1c196965f17f9748f835d90c307b7e594883 Mon Sep 17 00:00:00 2001 From: zecke Date: Thu, 18 Nov 2004 21:46:17 +0000 Subject: Add generic sorting implementation based on QVector for Contact and Todo --- (limited to 'libopie2/opiepim/private/opimoccurrence_p.h') diff --git a/libopie2/opiepim/private/opimoccurrence_p.h b/libopie2/opiepim/private/opimoccurrence_p.h new file mode 100644 index 0000000..3ccd97e --- a/dev/null +++ b/libopie2/opiepim/private/opimoccurrence_p.h @@ -0,0 +1,33 @@ +// Private HEADER DON'T USE IT!!! WE MEAN IT!!! +// + +#ifndef OPIE_PRIVATE_INTERNAL_OCCURRENCE_PIM_H +#define OPIE_PRIVATE_INTERNAL_OCCURRENCE_PIM_H + +#include + + +namespace Opie{ + +/* + * The Data is shared between Occurrences + * across multiple days. + */ +/** + * @internal + * + * DO NOT USE. IT IS NOT PART OF THE API + */ +struct OPimOccurrence::Data : public QShared { + Data() : uid( -1 ), backend( 0l ) {} + + QString summary; // The Summary of this Occurrence + QString location; // The location of this Occurrence + QString note; // The note of this Occurrence + UID uid; // The UID of the Record + mutable Opie::Core::OSharedPointer record; // The Guarded Record + OPimBase *backend; +}; +} + +#endif -- cgit v0.9.0.2