diff -r e71858845f73 -r e1758cbb96ac audiostubs/devsoundextensions_stubs/inc/G729EncoderIntfcCI.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audiostubs/devsoundextensions_stubs/inc/G729EncoderIntfcCI.h Mon Oct 04 00:04:35 2010 +0300 @@ -0,0 +1,100 @@ +/* +* Copyright (c) 2002-2008 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: Audio Stubs - +* +*/ + + +#ifndef G729ENCODERINTFCCI_H +#define G729ENCODERINTFCCI_H + +// INCLUDES +#include +#include + +// CONSTANTS + +// MACROS + +// DATA TYPES + +// FUNCTION PROTOTYPES + +// FORWARD DECLARATIONS + +// CLASS DECLARATION + +/** +* ?one_line_short_description. +* ?other_description_lines +* +* @lib ?library +* @since Series ?XX ?SeriesXX_version +*/ +class CG729EncoderIntfcCI : public CG729EncoderIntfc + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + IMPORT_C static CG729EncoderIntfcCI* NewL(); + + /** + * Destructor. + */ + IMPORT_C virtual ~CG729EncoderIntfcCI(); + + public: // New functions + + public: // Functions from base classes + + /** + * From ?base_class ?member_description. + * @since Series ?XX ?SeriesXX_version + * @param ?arg1 + * @return + */ + IMPORT_C virtual TInt SetVadMode(TBool aVadMode); + IMPORT_C virtual TInt GetVadMode(TBool& aVadMode); + + protected: // New functions + + protected: // Functions from base classes + + private: + + /** + * C++ default constructor. + */ + CG729EncoderIntfcCI(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + public: // Data + protected: // Data + private: // Data + TBool iVadMode; + public: // Friend classes + protected: // Friend classes + private: // Friend classes + + }; + +#endif // G729ENCODERINTFCCI_H + +// End of File