00001 /* 00002 * ============================================================================ 00003 * Name : sensrvpropertylistener.h 00004 * Interface : Sensor Channel API 00005 * Description : Property listener callback interface 00006 * Version : %version: 3.1.2 % << Don't touch! Updated by Synergy at check-out. 00007 * 00008 * Copyright © 2008 Nokia. All rights reserved. 00009 * This material, including documentation and any related computer 00010 * programs, is protected by copyright controlled by Nokia. All 00011 * rights are reserved. Copying, including reproducing, storing, 00012 * adapting or translating, any or all of this material requires the 00013 * prior written consent of Nokia. This material also contains 00014 * confidential information which may not be disclosed to others 00015 * without the prior written consent of Nokia. 00016 * ============================================================================ 00017 * Template version: 4.1 00018 */ 00019 00020 00021 #ifndef SENSRVPROPERTYLISTENER_H 00022 #define SENSRVPROPERTYLISTENER_H 00023 00024 00025 #include <e32base.h> 00026 #include <sensrvtypes.h> 00027 #include <sensrvproperty.h> 00028 #include <sensrvchannel.h> 00029 00030 // CLASS DECLARATIONS 00031 00044 class MSensrvPropertyListener 00045 { 00046 public: 00058 virtual void PropertyChanged( CSensrvChannel& aChannel, 00059 const TSensrvProperty& aChangedProperty ) = 0; 00060 00074 virtual void PropertyError( CSensrvChannel& aChannel, 00075 TSensrvErrorSeverity aError ) = 0; 00076 00087 virtual void SetPropertySuccessIndicationChanged( 00088 TSetPropertySuccessIndicator aIndication ) = 0; 00089 00102 virtual void GetPropertyListenerInterfaceL( TUid aInterfaceUid, TAny*& aInterface ) = 0; 00103 00104 }; 00105 00106 #endif //SENSRVPROPERTYLISTENER_H 00107 00108 // End of File