aboutsummaryrefslogtreecommitdiff
path: root/include/datetime
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-09-02 11:15:58 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-09-02 11:15:58 -0500
commit63493709a92c76169ad065cc3804b13dbd786537 (patch)
tree10e5ee05388699cc9ba5aed39ed3e41106f7ebd1 /include/datetime
parentd3732ff1a0d149544f89d08fa489e4f0fca8da07 (diff)
downloadayatana-indicator-datetime-63493709a92c76169ad065cc3804b13dbd786537.tar.gz
ayatana-indicator-datetime-63493709a92c76169ad065cc3804b13dbd786537.tar.bz2
ayatana-indicator-datetime-63493709a92c76169ad065cc3804b13dbd786537.zip
add planner.cpp to the build
Diffstat (limited to 'include/datetime')
-rw-r--r--include/datetime/planner.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/datetime/planner.h b/include/datetime/planner.h
index 43991ec..55e72e7 100644
--- a/include/datetime/planner.h
+++ b/include/datetime/planner.h
@@ -37,12 +37,11 @@ namespace datetime {
class Planner
{
public:
- virtual ~Planner() =default;
-
+ virtual ~Planner();
virtual core::Property<std::vector<Appointment>>& appointments() =0;
protected:
- Planner() =default;
+ Planner();
static void sort(std::vector<Appointment>&);
static void trim(std::vector<Appointment>&, const DateTime& begin, const DateTime& end);
};