Feature - #336 prepend command

- Added feature #336 which gives task a 'prepend' command for symmetry
  with the 'append' command.
This commit is contained in:
Paul Beckingham
2009-12-04 22:47:44 -05:00
parent 5e905742ad
commit 5d0e6c3435
10 changed files with 157 additions and 4 deletions

View File

@@ -57,6 +57,7 @@ bool nag (Task&);
// command.cpp
int handleAdd (std::string &);
int handleAppend (std::string &);
int handlePrepend (std::string &);
int handleExport (std::string &);
int handleDone (std::string &);
int handleModify (std::string &);
@@ -79,6 +80,7 @@ void handleUndo ();
void handleShell ();
#endif
int deltaAppend (Task&);
int deltaPrepend (Task&);
int deltaDescription (Task&);
int deltaTags (Task&);
int deltaAttributes (Task&);