00001 /* 00002 * ============================================================================= 00003 * Name : sipstrings.h 00004 * Part of : SIP Codec 00005 * Interface : SDK API, SIP Codec API 00006 * Description : 00007 * Version : SIP/4.0 00008 * 00009 * Copyright (c) 2004 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 #ifndef SIPSTRINGS_H 00022 #define SIPSTRINGS_H 00023 00024 // INCLUDES 00025 #include <e32base.h> 00026 #include <stringpool.h> 00027 #include "_sipcodecdefs.h" 00028 00029 // FORWARD DECLARATIONS 00030 class CSIPStrings; 00031 00032 // CLASS DECLARATION 00045 class SIPStrings 00046 { 00047 public: // Constructors and destructor 00048 00053 IMPORT_C static void OpenL(); 00054 00061 IMPORT_C static void Close(); 00062 00063 00064 public: // New functions 00065 00073 IMPORT_C static RStringF StringF(TInt aIndex); 00074 00080 IMPORT_C static RStringPool Pool(); 00081 00087 IMPORT_C static const TStringTable& Table(); 00088 00089 private: 00090 00091 static CSIPStrings* Strings(); 00092 }; 00093 00094 // SIPSTRINGS_H 00095 #endif 00096 00097 // End of File