iaupdate/IAD/api/src/iaupdate.cpp
changeset 0 ba25891c3a9e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/iaupdate/IAD/api/src/iaupdate.cpp	Thu Dec 17 08:51:10 2009 +0200
@@ -0,0 +1,90 @@
+/*
+* 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 "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:   This module contains the implementation of CIAUpdate class 
+*                member functions.
+*
+*/
+
+
+
+// INCLUDES
+#include <iaupdate.h>
+#include "iaupdatemanager.h"
+
+
+EXPORT_C CIAUpdate* CIAUpdate::NewL( MIAUpdateObserver& aObserver )
+    {
+    CIAUpdate* self = CIAUpdate::NewLC( aObserver );
+    CleanupStack::Pop( self );
+    return self;
+    }
+    
+EXPORT_C CIAUpdate* CIAUpdate::NewLC( MIAUpdateObserver& aObserver )
+    {
+    CIAUpdate* self = new( ELeave ) CIAUpdate();
+    CleanupStack::PushL( self );
+    self->ConstructL( aObserver );
+    return self;
+    }
+
+    
+CIAUpdate::CIAUpdate()
+: CBase()
+    {
+    
+    }
+    
+void CIAUpdate::ConstructL( MIAUpdateObserver& aObserver )
+    {
+    iUpdateManager = CIAUpdateManager::NewL( aObserver );
+    }
+
+
+EXPORT_C CIAUpdate::~CIAUpdate()
+    {
+    delete iUpdateManager;
+    }
+
+
+EXPORT_C void CIAUpdate::CheckUpdates( const CIAUpdateParameters& aUpdateParameters )
+    {
+    // Forward request to the actual updater
+    UpdateManager().CheckUpdates( aUpdateParameters );
+    }
+
+
+EXPORT_C void CIAUpdate::ShowUpdates( const CIAUpdateParameters& aUpdateParameters )
+    {
+    // Forward request to the actual updater
+    UpdateManager().ShowUpdates( aUpdateParameters );    
+    }
+    
+
+EXPORT_C void CIAUpdate::Update( const CIAUpdateParameters& aUpdateParameters )
+    {
+    // Forward request to the actual updater
+    UpdateManager().Update( aUpdateParameters );        
+    }
+
+
+EXPORT_C void CIAUpdate::UpdateQuery()
+    {
+    UpdateManager().UpdateQuery();
+    }
+
+
+CIAUpdateManager& CIAUpdate::UpdateManager() const
+    {
+    return *iUpdateManager;
+    }