Changeset 65158 in vbox for trunk/src/VBox/Main/include/Matching.h
- Timestamp:
- Jan 5, 2017 4:52:22 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112661
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Matching.h
r62485 r65158 44 44 ParsedFilter_base() : mValid (false), mNull (true), mErrorPosition (0) {}; 45 45 46 /** 47 * Returns @c true if the filter is valid, @c false otherwise. 48 */ 46 49 bool isValid() const { return mNull || mValid; } 47 50 bool isNull() const { return mNull; } … … 56 59 57 60 /** 58 * Returns true if current isNull() and isValid() values make further59 * detailed matching meaningful, otherwise returns false.61 * Returns @c true if current isNull() and isValid() values make further 62 * detailed matching meaningful, otherwise returns @c false. 60 63 * Must be called as a first method of every isMatch() implementation, 61 * so that isMatch() will immediately return false if isPreMatch() returns64 * so that isMatch() will immediately return @c false if isPreMatch() returns 62 65 * false. 63 66 */
Note:
See TracChangeset
for help on using the changeset viewer.