diff -r 5cc91383ab1e -r 7333d7932ef7 iaupdate/IAD/engine/controller/src/iaupdatenodeimpl.cpp --- a/iaupdate/IAD/engine/controller/src/iaupdatenodeimpl.cpp Thu Aug 19 10:02:49 2010 +0300 +++ b/iaupdate/IAD/engine/controller/src/iaupdatenodeimpl.cpp Tue Aug 31 15:21:33 2010 +0300 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2007-2010 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" @@ -367,6 +367,67 @@ // --------------------------------------------------------------------------- +// CIAUpdateNode::SetUiState() +// +// --------------------------------------------------------------------------- +// +void CIAUpdateNode::SetUiState( MIAUpdateNode::TUIUpdateState aState ) + { + iUiUpdateState = aState; + } + +// --------------------------------------------------------------------------- +// CIAUpdateNode::UiState() +// +// --------------------------------------------------------------------------- +// +MIAUpdateNode::TUIUpdateState CIAUpdateNode::UiState() const + { + return iUiUpdateState; + } + +// --------------------------------------------------------------------------- +// CIAUpdateNode::SetProgress +// +// --------------------------------------------------------------------------- +// +void CIAUpdateNode::SetProgress( TInt aProgress ) + { + iProgress = aProgress; + } + +// --------------------------------------------------------------------------- +// CIAUpdateNode::Progress +// +// --------------------------------------------------------------------------- +// +TInt CIAUpdateNode::Progress() const + { + return iProgress; + } + +// --------------------------------------------------------------------------- +// CIAUpdateNode::SetTotal +// +// --------------------------------------------------------------------------- +// +void CIAUpdateNode::SetTotal( TInt aTotal ) + { + iTotal = aTotal; + } + +// --------------------------------------------------------------------------- +// CIAUpdateNode::Total +// +// --------------------------------------------------------------------------- +// +TInt CIAUpdateNode::Total() const + { + return iTotal; + } + + +// --------------------------------------------------------------------------- // CIAUpdateNode::NodeType // // ---------------------------------------------------------------------------