From 5ef2a256a6a51f69a4809364e133ea52c1f6d084 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 2 Apr 2017 14:02:40 -0400 Subject: [PATCH] Recurrence: Stubbed single due date function --- src/recur2.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/recur2.cpp b/src/recur2.cpp index 26b4753b0..6fa54f0c3 100644 --- a/src/recur2.cpp +++ b/src/recur2.cpp @@ -29,6 +29,15 @@ extern Context context; +//////////////////////////////////////////////////////////////////////////////// +// Calculates the due date for a new new instance N. +static Datetime calculateDueN (const Task&, int) +{ + Datetime due; + + return due; +} + //////////////////////////////////////////////////////////////////////////////// static void synthesizeTasks (const Task&) {