Enhancement - report stubs

- Stubbed all non-1.8.0 reports.
- Updated all handler signatures.
This commit is contained in:
Paul Beckingham
2009-06-09 22:48:03 -04:00
parent a694ac05b1
commit f3f77a4c78
6 changed files with 86 additions and 86 deletions

View File

@@ -675,7 +675,7 @@ static std::string importTaskCmdLine (
T task;
std::string command;
parse (args, command, task);
handleAdd (tdb, task);
handleAdd ();
}
catch (...)
@@ -1127,10 +1127,10 @@ static std::string importCSV (
}
////////////////////////////////////////////////////////////////////////////////
std::string handleImport (TDB& tdb, T& task)
std::string handleImport ()
{
std::stringstream out;
#if 0
// Use the description as a file name.
std::string file = trim (task.getDescription ());
if (file.length () > 0)
@@ -1194,7 +1194,7 @@ std::string handleImport (TDB& tdb, T& task)
}
else
throw std::string ("You must specify a file to import.");
#endif
return out.str ();
}