DEPRECATED: Diffusion iOS Classic API  5.9.4
 All Data Structures Files Functions Variables Enumerations Enumerator Properties Macros Pages
DFPageStatus.h
1 //
2 // DFPageStatus.h
3 // DiffusionTransport
4 //
5 // Created by MARTIN COWIE on 05/01/2012 - Diffusion 5.9.4_01
6 // Copyright (c) 2013 Push Technology Ltd. All rights reserved.
7 //
8 
9 @class DFTopicMessage;
10 
11 /**
12  * Status of page
13  *
14  * @author Martin Cowie - created 6 Jan 2012
15  * @since 4.1
16  */
17 @interface DFPageStatus : NSObject
18 
19 @property(readonly,nonatomic) int currentPage; /**< Returns the current page number, Note that the first page is numbered 1 */
20 @property(readonly,nonatomic) int lastPage; /**< The current highest page number. */
21 @property(readonly,nonatomic) int totalNumberOfLines; /**< the total number of lines. */
22 @property(readonly,nonatomic) BOOL dirty; /**< Returns whether the page is 'dirty', meaning that has been returned for it is currently out of date and the page needs to be refreshed. */
23 
24 
25 
26 @end