17 lines
297 B
C
17 lines
297 B
C
|
//
|
||
|
// LSDataMatcher.h
|
||
|
// Nocilla
|
||
|
//
|
||
|
// Created by Luis Solano Bonet on 09/11/14.
|
||
|
// Copyright (c) 2014 Luis Solano Bonet. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "LSMatcher.h"
|
||
|
|
||
|
@interface LSDataMatcher : LSMatcher
|
||
|
|
||
|
- (instancetype)initWithData:(NSData *)data;
|
||
|
|
||
|
@end
|