Cmd*: Added command DNA, which will ѕoon drive functionality

This commit is contained in:
Paul Beckingham 2015-08-01 15:56:04 -04:00
parent d390433ec7
commit bf80c7d514
47 changed files with 712 additions and 388 deletions

View file

@ -39,12 +39,17 @@ extern Context context;
////////////////////////////////////////////////////////////////////////////////
CmdUnique::CmdUnique ()
{
_keyword = "_unique";
_usage = "task <filter> _unique <attribute>";
_description = STRING_CMD_UNIQUE_USAGE;
_read_only = false;
_displays_id = true;
_category = Command::Category::internal;
_keyword = "_unique";
_usage = "task <filter> _unique <attribute>";
_description = STRING_CMD_UNIQUE_USAGE;
_read_only = false;
_displays_id = true;
_needs_gc = true;
_uses_context = true;
_accepts_filter = true;
_accepts_modifications = false;
_accepts_miscellaneous = true;
_category = Command::Category::internal;
}
////////////////////////////////////////////////////////////////////////////////