aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-01-22 10:15:56 -0600
committerCharles Kerr <charles.kerr@canonical.com>2014-01-22 10:15:56 -0600
commit08b1cfd6bc97cae18b916d97a03781986e7421fe (patch)
treec776258f7a9a8a589fa07774ed753bfdfe9736eb /include
parent063ff0ef0a7761e713b7b36e220e0e2bfa442326 (diff)
downloadayatana-indicator-datetime-08b1cfd6bc97cae18b916d97a03781986e7421fe.tar.gz
ayatana-indicator-datetime-08b1cfd6bc97cae18b916d97a03781986e7421fe.tar.bz2
ayatana-indicator-datetime-08b1cfd6bc97cae18b916d97a03781986e7421fe.zip
move planner-mock.h from include/datetime/ to tests/ because it's only needed by the tests.
Diffstat (limited to 'include')
-rw-r--r--include/datetime/planner-mock.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/datetime/planner-mock.h b/include/datetime/planner-mock.h
deleted file mode 100644
index 44d30c7..0000000
--- a/include/datetime/planner-mock.h
+++ /dev/null
@@ -1,44 +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_MOCK_H
-#define INDICATOR_DATETIME_PLANNER_MOCK_H
-
-#include <datetime/planner.h>
-
-namespace unity {
-namespace indicator {
-namespace datetime {
-
-/**
- * \brief Planner which does nothing on its own.
- * It requires its client must set its appointments property.
- */
-class MockPlanner: public Planner
-{
-public:
- MockPlanner() =default;
- virtual ~MockPlanner() =default;
-};
-
-} // namespace datetime
-} // namespace indicator
-} // namespace unity
-
-#endif // INDICATOR_DATETIME_PLANNER_MOCK_H