21 lines
402 B
Objective-C

//
// OCHamcrest - HCClassMatcher.h
// Copyright 2013 hamcrest.org. See LICENSE.txt
//
// Created by: Jon Reid, http://qualitycoding.org/
// Docs: http://hamcrest.github.com/OCHamcrest/
// Source: https://github.com/hamcrest/OCHamcrest
//
#import <OCHamcrestIOS/HCBaseMatcher.h>
@interface HCClassMatcher : HCBaseMatcher
{
Class theClass;
}
- (instancetype)initWithType:(Class)type;
@end