Samond Classes Library 1.2.0-RELEASE build 166
SCSorterProtocol.h
Go to the documentation of this file.
1 //
2 // SCSorterProtocol.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 27.04.12.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <Foundation/Foundation.h>
24 
25 @class SCStrings;
26 
39 @protocol SCSorter
40 
41 #pragma mark -
42 #pragma mark Сортировка объектов коллекций
43 
58 - (void)ascendingSortCollection:(id)collection;
59 
70 - (void)descendingSortCollection:(id)collection;
71 
72 #pragma mark -
73 #pragma mark Сортировка строк
74 
89 - (void)ascendingSortText:(SCStrings *)text;
90 
101 - (void)descendingSortText:(SCStrings *)text;
102 
103 
104 @end
Strings list class.
Definition: SCStrings.h:65
Abstract implementation of the protocol SCSorter.
Definition: SCSorter.h:37