Filter: Added a mechanism to override ::safety

This commit is contained in:
Paul Beckingham
2015-07-12 22:02:11 -04:00
parent 157f191546
commit f0c8330ebf
2 changed files with 28 additions and 16 deletions

View File

@@ -44,10 +44,12 @@ public:
void subset (std::vector <Task>&, bool applyContext = true);
bool pendingOnly ();
void safety ();
void disableSafety ();
private:
int _startCount;
int _endCount;
int _startCount;
int _endCount;
bool _safety;
};
#endif