Filter: Removed obsolete method

This commit is contained in:
Paul Beckingham 2016-01-09 22:34:54 -05:00
parent 88ed4d0035
commit 7c5ddee4e5
2 changed files with 0 additions and 6 deletions

View file

@ -62,11 +62,6 @@ Filter::Filter ()
{
}
////////////////////////////////////////////////////////////////////////////////
Filter::~Filter ()
{
}
////////////////////////////////////////////////////////////////////////////////
// Take an input set of tasks and filter into a subset.
void Filter::subset (const std::vector <Task>& input, std::vector <Task>& output)

View file

@ -38,7 +38,6 @@ class Filter
{
public:
Filter ();
~Filter ();
void subset (const std::vector <Task>&, std::vector <Task>&);
void subset (std::vector <Task>&);