diff -r 000000000000 -r 307788aac0a8 realtimenetprots/sipfw/SDP/inc/CSdpCodecStringPool.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/realtimenetprots/sipfw/SDP/inc/CSdpCodecStringPool.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,89 @@ +/* +* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Name : SdpCodecStringPool.h +* Part of : SDP Codec +* Interface : SDK API, SDP Codec API +* Version : 1.0 +* +*/ + + + + +/** + @internalComponent +*/ + +#ifndef CSDPCODECSTRINGPOOL_H +#define CSDPCODECSTRINGPOOL_H + +// INCLUDES +#include +#include "_sdpdefs.h" +#include + + +// CLASS DECLARATION +/** + * This class defines string pool for SdpCodec. + * Only one CSdpCodecStringPool object must be created in an application. + * If more than one CSdpCodecStringPool objects are used by an + * application with CSdpDocument objects, panic occurs. + * + * @lib sdpcodec.lib + */ +class CSdpCodecStringPool : public CBase + { +public: // Constructors and destructor + + /** + * StringPool is created for SdpCodec. + * + * @return The new instance. + */ + static CSdpCodecStringPool* NewLC(); + + /** + * Deletes the resources held by the instance. + */ + ~CSdpCodecStringPool(); + +public: + + /** + * Gets the string pool used by SDP + * + * @return a handle to a string pool + */ + RStringPool StringPool(); + + /** + * Gets the SDP's string pool table + * + * @return the string pool table + */ + static const TStringTable& StringTable(); + +private: + + CSdpCodecStringPool(); + void ConstructL(); + +private: // Data + + RStringPool iPool; + }; + +#endif