Samond Classes Library 1.2.6-STABLE build 219
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 - 2018 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <Foundation/Foundation.h>
24 #import <scl/SCStream.h>
25 
26 #pragma mark -
27 #pragma mark Class Constants
28 
37 #define SCNullStreamClass @"SCNullStream"
38 
39 
66 @interface SCNullStream : SCStream
67 
68 #pragma mark -
69 #pragma mark Creating Class Instance
70 + (instancetype)nullStreamWithDelegate:(id<SCStreamDelegate>)delegate;
71 + (instancetype)nullStream;
72 
73 #pragma mark -
74 #pragma mark Initializing Class Instances
75 - (instancetype)initWithDelegate:(id<SCStreamDelegate>)delegate;
76 - (instancetype)init;
77 
78 @end
instancetype init()
Definition: SCNullStream.m:181
Class SCStream header file.
Streams events handling class.
Definition: SCStreamDelegate.h:274
instancetype nullStream()
Definition: SCNullStream.m:144
Standard null stream (/dev/null) class.
Definition: SCNullStream.h:66
Abstract parent class of the stream classes hierarchy.
Definition: SCStream.h:224