widgets/widgetsidchecker/src/widgetsidchecker.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 25 May 2010 13:52:38 +0300
branchRCL_3
changeset 71 4bd5176e1bc8
parent 42 d39add9822e2
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2007, 2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:  
*
*/
#include "widgetsidchecker.h"

#include <e32std.h>
#include <e32const.h>
#include <ecom/implementationproxy.h>
#include <f32file.h>
#include <w32std.h>
#include <apgtask.h>
//#include <eikenv.h>
#include <s32file.h>

//WidgetRegistry.EXE[10282f06]0001
//const TUid KWidgetRegistry = { 0x10282F06 };
//0x10282F06
//hb
//#include <WidgetRegistryClient.h>
//////////////////////////////
// ECOM Implementation Table
//////////////////////////////


TBool E32Dll()
	{
	return (ETrue);
	}

const TImplementationProxy ImplementationTable[] =
	{
		IMPLEMENTATION_PROXY_ENTRY(0x10281FC0, CWidgetSidChecker::NewL)
	};

EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
	{
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
	return ImplementationTable;
	}

//////////////////////////////
// CWidgetSidChecker
//////////////////////////////

CWidgetSidChecker* CWidgetSidChecker::NewL()
	{
	CWidgetSidChecker* self = new(ELeave) CWidgetSidChecker();
	return self;
	}

    CWidgetSidChecker::CWidgetSidChecker()
    {
	}
	

CWidgetSidChecker::~CWidgetSidChecker()
	{
	
	}

TBool CWidgetSidChecker::AppRegisteredAt(const TUid& /*aSid*/, TDriveUnit /*aDrive*/)
    {
    return ETrue;      
    }

	
void CWidgetSidChecker::SetRescanCallBackL(const TCallBack &/*aCallBack*/)
	{
	return;
	}

// End of file