KWRegularExpressionPatternMatcher.h 407 B

123456789101112131415161718
  1. //
  2. // KWRegularExpressionPatternMatcher.h
  3. // Kiwi
  4. //
  5. // Created by Kristopher Johnson on 4/11/13.
  6. // Copyright (c) 2013 Allen Ding. All rights reserved.
  7. //
  8. #import "KiwiConfiguration.h"
  9. #import "KWMatcher.h"
  10. @interface KWRegularExpressionPatternMatcher : KWMatcher
  11. - (void)matchPattern:(NSString *)pattern;
  12. - (void)matchPattern:(NSString *)pattern options:(NSRegularExpressionOptions)options;
  13. @end