aboutsummaryrefslogtreecommitdiff
path: root/include/datetime/planner-eds.h
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-03-09 22:26:26 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-03-09 22:26:26 -0500
commit462e8e6d8e46475ea3222056f65ff40823e9e0bf (patch)
treed6538de2306f6d7a2c6b00117dfaa4dda52abc2f /include/datetime/planner-eds.h
parent3f4d409f21bbb1f79f149a5ee66dcddaa505ddb1 (diff)
downloadayatana-indicator-datetime-462e8e6d8e46475ea3222056f65ff40823e9e0bf.tar.gz
ayatana-indicator-datetime-462e8e6d8e46475ea3222056f65ff40823e9e0bf.tar.bz2
ayatana-indicator-datetime-462e8e6d8e46475ea3222056f65ff40823e9e0bf.zip
don't connect to EDS when running in the greeter.
Diffstat (limited to 'include/datetime/planner-eds.h')
-rw-r--r--include/datetime/planner-eds.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/include/datetime/planner-eds.h b/include/datetime/planner-eds.h
deleted file mode 100644
index 95b5d79..0000000
--- a/include/datetime/planner-eds.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright 2013 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 3, as published
- * by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Authors:
- * Charles Kerr <charles.kerr@canonical.com>
- */
-
-#ifndef INDICATOR_DATETIME_PLANNER_EDS_H
-#define INDICATOR_DATETIME_PLANNER_EDS_H
-
-#include <datetime/planner-range.h>
-
-#include <datetime/engine-eds.h>
-#include <datetime/timezone.h>
-
-#include <memory> // shared_ptr, unique_ptr
-
-namespace unity {
-namespace indicator {
-namespace datetime {
-
-/**
- * \brief An EDS-based #RangePlanner
- */
-class EdsPlanner: public RangePlanner
-{
-public:
- EdsPlanner(const std::shared_ptr<EdsEngine>& eds_engine,
- const std::shared_ptr<Timezone>& timezone);
- virtual ~EdsPlanner();
-
- core::Property<std::vector<Appointment>>& appointments();
-
-protected:
- void rebuild_now();
-
-private:
- std::shared_ptr<EdsEngine> m_engine;
- std::shared_ptr<Timezone> m_timezone;
- core::Property<std::vector<Appointment>> m_appointments;
-};
-
-} // namespace datetime
-} // namespace indicator
-} // namespace unity
-
-#endif // INDICATOR_DATETIME_PLANNER_EDS_H