00001 /* 00002 * ============================================================================== 00003 * Name : sipregistrationcontext.h 00004 * Part of : SIP Client 00005 * Interface : SDK API, SIP API 00006 * Description : 00007 * Version : 1.0 00008 * 00009 * Copyright (c) 2005 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MSIPREGISTRATIONCONTEXT_H 00023 #define MSIPREGISTRATIONCONTEXT_H 00024 00025 // INCLUDES 00026 #include <e32base.h> 00027 00028 // CLASS DECLARATION 00029 00040 class MSIPRegistrationContext 00041 { 00042 public: // New functions 00046 virtual ~MSIPRegistrationContext() {} 00047 00054 virtual TBool IsContextActive() const = 0; 00055 00062 virtual TUint32 ContextId() const = 0; 00063 }; 00064 00065 #endif