Samond Classes Library 1.2.0-RELEASE build 166
SCSorter.h
Go to the documentation of this file.
1 //
2 // SCSorter.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 25.05.12.
6 // Copyright (c) 2007 - 2017 by Samond Development Corporation. All rights reserved.
7 //
8 
9 #import <scl/SCObject.h>
10 #import <scl/SCSorterProtocol.h>
11 
37 @interface SCSorter : SCObject <SCSorter>
38 
39 #pragma mark -
40 #pragma mark Сортировка объектов коллекций
41 - (void)ascendingSortCollection:(id)collection;
42 - (void)descendingSortCollection:(id)collection;
43 
44 #pragma mark -
45 #pragma mark Сортировка строк
46 - (void)ascendingSortText:(SCStrings *)text;
47 - (void)descendingSortText:(SCStrings *)text;
48 
49 @end
Strings list class.
Definition: SCStrings.h:65
Parent class of all library classes.
Definition: SCObject.h:57
Abstract implementation of the protocol SCSorter.
Definition: SCSorter.h:37
Sorting algorithm protocol.
Definition: SCSorterProtocol.h:39