mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-01 18:33:10 +00:00
34 lines
696 B
Objective-C
34 lines
696 B
Objective-C
//
|
|
// OCHamcrest - HCBaseDescription.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 <Foundation/Foundation.h>
|
|
#import <OCHamcrestIOS/HCDescription.h>
|
|
|
|
|
|
/**
|
|
Base class for all HCDescription implementations.
|
|
|
|
@ingroup core
|
|
*/
|
|
@interface HCBaseDescription : NSObject <HCDescription>
|
|
@end
|
|
|
|
|
|
/**
|
|
Methods that must be provided by subclasses of HCBaseDescription.
|
|
*/
|
|
@interface HCBaseDescription (SubclassMustImplement)
|
|
|
|
/**
|
|
Append the string @a str to the description.
|
|
*/
|
|
- (void)append:(NSString *)str;
|
|
|
|
@end
|