/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* Description:
*
*/
// INCLUDE FILES
#include <StifTestInterface.h>
//#include "GStreamerTestClass.h"
#include "GStreamerTestClass.h"
// EXTERNAL DATA STRUCTURES
//extern ?external_data;
// EXTERNAL FUNCTION PROTOTYPES
//extern ?external_function( ?arg_type,?arg_type );
// CONSTANTS
//const ?type ?constant_var = ?constant;
// MACROS
//#define ?macro ?macro_def
// LOCAL CONSTANTS AND MACROS
//const ?type ?constant_var = ?constant;
//#define ?macro_name ?macro_def
// MODULE DATA STRUCTURES
//enum ?declaration
//typedef ?declaration
// LOCAL FUNCTION PROTOTYPES
//?type ?function_name( ?arg_type, ?arg_type );
// FORWARD DECLARATIONS
//class ?FORWARD_CLASSNAME;
// ============================= LOCAL FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// ?function_name ?description.
// ?description
// Returns: ?value_1: ?description
// ?value_n: ?description_line1
// ?description_line2
// -----------------------------------------------------------------------------
//
/*
?type ?function_name(
?arg_type arg, // ?description
?arg_type arg) // ?description
{
?code // ?comment
// ?comment
?code
}
*/
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CGStreamerTestClass::CGStreamerTestClass
// C++ default constructor can NOT contain any code, that
// might leave.
// -----------------------------------------------------------------------------
//
CGStreamerTestClass::CGStreamerTestClass(
CTestModuleIf& aTestModuleIf ):
CScriptBase( aTestModuleIf ),
iTestModuleIf(aTestModuleIf)
{
//myClassPtr = this;
}
// -----------------------------------------------------------------------------
// CGStreamerTestClass::ConstructL
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CGStreamerTestClass::ConstructL()
{
iLog = CStifLogger::NewL( KGStreamerTestClassLogPath,
KGStreamerTestClassLogFile,
CStifLogger::ETxt,
CStifLogger::EFile,
EFalse );
iTimeoutController = CSimpleTimeout::NewL (this, iLog);
iLog->Log(_L(">>CGStreamerTestClass::ConstructL "));
}
// -----------------------------------------------------------------------------
// CGStreamerTestClass::NewL
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CGStreamerTestClass* CGStreamerTestClass::NewL(
CTestModuleIf& aTestModuleIf )
{
CGStreamerTestClass* self = new (ELeave) CGStreamerTestClass( aTestModuleIf );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// Destructor
CGStreamerTestClass::~CGStreamerTestClass()
{
// Delete resources allocated from test methods
Delete();
iLog->Log(_L(">>CGStreamerTestClass::~CGStreamerTestClass "));
// Delete logger
delete iLog;
delete iTimeoutController;
}
// ========================== OTHER EXPORTED FUNCTIONS =========================
// -----------------------------------------------------------------------------
// LibEntryL is a polymorphic Dll entry point.
// Returns: CScriptBase: New CScriptBase derived object
// -----------------------------------------------------------------------------
//
EXPORT_C CScriptBase* LibEntryL(
CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
{
return ( CScriptBase* ) CGStreamerTestClass::NewL( aTestModuleIf );
}
// -----------------------------------------------------------------------------
// E32Dll is a DLL entry point function.
// Returns: KErrNone
// -----------------------------------------------------------------------------
//
#ifndef EKA2 // Hide Dll entry point to EKA2
GLDEF_C TInt E32Dll(
TDllReason /*aReason*/) // Reason code
{
return(KErrNone);
}
#endif // EKA2
// End of File