diff options
Diffstat (limited to 'include/datetime/planner.h')
-rw-r--r-- | include/datetime/planner.h | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/include/datetime/planner.h b/include/datetime/planner.h index 376a31f..e6ef927 100644 --- a/include/datetime/planner.h +++ b/include/datetime/planner.h @@ -32,41 +32,16 @@ namespace indicator { namespace datetime { /** - * \brief Simple appointment book - * - * @see EdsPlanner - * @see State + * \brief Simple collection of appointments */ class Planner { public: virtual ~Planner() =default; - - /** - * \brief Timestamp used to determine the appointments in the `upcoming' and `this_month' properties. - * Setting this value will cause the planner to re-query its backend and - * update the `upcoming' and `this_month' properties. - */ - core::Property<DateTime> time; - - /** - * \brief The next few appointments that follow the time specified in the time property. - */ - core::Property<std::vector<Appointment>> upcoming; - - /** - * \brief The appointments that occur in the same month as the time property - */ - core::Property<std::vector<Appointment>> this_month; + virtual core::Property<std::vector<Appointment>>& appointments() =0; protected: Planner() =default; - -private: - - // disable copying - Planner(const Planner&) =delete; - Planner& operator=(const Planner&) =delete; }; } // namespace datetime |