From b83bbb09c0ae142a9c6ec12b7f259422766d6adc Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 27 Mar 2016 00:01:13 -0400 Subject: [PATCH] CmdExport: Documented Timeline algorithm --- src/commands/CmdExport.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commands/CmdExport.cpp b/src/commands/CmdExport.cpp index 3410fe81..97fd537e 100644 --- a/src/commands/CmdExport.cpp +++ b/src/commands/CmdExport.cpp @@ -33,8 +33,12 @@ int CmdExport (Database& database) { // Load all data. auto intervals = database.getAllIntervals (); + // TODO Apply filter to intervals.. - // TODO Apply filter. + // TODO Create Timeline. + // TODO Add intervals to Timeline. + // TODO Add exclusions to Timeline. + // TODO Extract tracked intervals from Timeline. // Compose JSON. std::cout << "[\n";