Expressions

- Implemented !~ operator.
- Hid debug output for now.
This commit is contained in:
Paul Beckingham 2011-06-19 23:50:05 -04:00
parent 1bf6c8a9fa
commit aa8d872466
2 changed files with 68 additions and 25 deletions

View file

@ -28,6 +28,7 @@
#include <iostream>
#include <vector>
#include <Expression.h>
#include <Timer.h>
#include <Command.h>
#include <CmdAdd.h>
@ -253,6 +254,8 @@ bool Command::displays_id () const
////////////////////////////////////////////////////////////////////////////////
void Command::filter (std::vector <Task>& input, std::vector <Task>& output)
{
Timer timer ("Command::filter");
Arguments f = context.args.extract_read_only_filter ();
if (f.size ())
{