Samond Classes Library 1.2.2-RELEASE build 188
SCNullStream.h
Go to the documentation of this file.
1 //
2 // SCNullStream.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 01.02.16.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <scl/SCStream.h>
24 
25 #pragma mark -
26 #pragma mark Class Constants
27 
36 #define SCNullStreamClass @"SCNullStream"
37 
38 
65 @interface SCNullStream : SCStream
66 
67 #pragma mark -
68 #pragma mark Creating Class Instance
69 + (instancetype)nullStreamWithDelegate:(id<SCStreamDelegate>)delegate;
70 + (instancetype)nullStream;
71 
72 #pragma mark -
73 #pragma mark Initializing Class Instances
74 - (instancetype)initWithDelegate:(id<SCStreamDelegate>)delegate;
75 - (instancetype)init;
76 
77 @end
instancetype init()
Definition: SCNullStream.m:179
Class SCStream header file.
Streams events handling class.
Definition: SCStreamDelegate.h:272
instancetype nullStream()
Definition: SCNullStream.m:142
Standard null stream (/dev/null) class.
Definition: SCNullStream.h:65
Abstract parent class of the stream classes hierarchy.
Definition: SCStream.h:226