MrSID Decode SDK for Raster Reference Manual  9.5.1.4427
lti_delegates.h
Go to the documentation of this file.
1 /* $Id$ */
2 /* //////////////////////////////////////////////////////////////////////////
3 // //
4 // This code is Copyright (c) 2004 LizardTech, Inc, 1008 Western Avenue, //
5 // Suite 200, Seattle, WA 98104. Unauthorized use or distribution //
6 // prohibited. Access to and use of this code is permitted only under //
7 // license from LizardTech, Inc. Portions of the code are protected by //
8 // US and foreign patents and other filings. All Rights Reserved. //
9 // //
11 /* PUBLIC */
12 
13 #ifndef LTI_DELEGATES_H
14 #define LTI_DELEGATES_H
15 
16 // lt_lib_mrsid_core
17 #include "lti_types.h"
18 
19 
21 
22 
23 
40 {
41 public:
42  virtual ~LTIInterruptDelegate(void);
43 
54  virtual LT_STATUS getInterruptStatus(void) = 0;
55 };
56 
57 
73 {
74 public:
75  virtual ~LTIProgressDelegate(void);
76 
87  virtual LT_STATUS setProgressStatus(float percentComplete) = 0;
88 };
89 
100 {
101 public:
102  virtual ~LTIErrorDelegate(void);
103 
113  virtual void handleError(LT_STATUS errorCode) = 0;
114 };
115 
117 
118 #endif // LTI_DELEGATES_H
virtual LT_STATUS setProgressStatus(float percentComplete)=0
set percent completed
virtual ~LTIErrorDelegate(void)
#define LT_END_NAMESPACE(theNameSpace)
compiler does not support namespaces
Definition: lt_define.h:85
lt_uint32 LT_STATUS
An integral status code.
Definition: lt_status.h:39
virtual void handleError(LT_STATUS errorCode)=0
Report an error.
error delegate (callback) base class
Definition: lti_delegates.h:99
This file contains a number of enums, typedefs, etc, that are used throughout the MrSID SDK...
#define LT_BEGIN_NAMESPACE(theNameSpace)
compiler does not support namespaces
Definition: lt_define.h:84
interrupt delegate (callback) base class
Definition: lti_delegates.h:39
virtual ~LTIProgressDelegate(void)
progress delegate (callback) base class
Definition: lti_delegates.h:72

LizardTech