diff -r 15bf7259bb7c -r d8a3531bc6b8 uiacceltk/hitchcock/goommonitor/src/goomactionref.cpp --- a/uiacceltk/hitchcock/goommonitor/src/goomactionref.cpp Tue Feb 02 07:56:43 2010 +0200 +++ b/uiacceltk/hitchcock/goommonitor/src/goomactionref.cpp Mon Feb 22 17:57:49 2010 +0200 @@ -23,8 +23,8 @@ { } -TActionRef::TActionRef(TActionType aType, TInt aPriority, TGOomSyncMode aSyncMode, TInt aRamEstimate, TInt aWgId, TUint aWgIndex) -: iType(aType), iPriority(aPriority), iSyncMode(aSyncMode), iRamEstimate(aRamEstimate), iWgId(aWgId), iWgIndex(aWgIndex), iRunPlugin(NULL) +TActionRef::TActionRef(TActionType aType, TInt aPriority, TGOomSyncMode aSyncMode, TInt aRamEstimate, TInt aWgId, TUint aWgIndex, TInt aCloseTimeout, TInt aWaitAfterClose) +: iType(aType), iPriority(aPriority), iSyncMode(aSyncMode), iRamEstimate(aRamEstimate), iWgId(aWgId), iWgIndex(aWgIndex), iRunPlugin(NULL), iCloseTimeout(aCloseTimeout), iWaitAfterClose(aWaitAfterClose) { } @@ -59,6 +59,16 @@ return iWgId; } +TInt TActionRef::CloseTimeout() const + { + return iCloseTimeout; + } + +TInt TActionRef::WaitAfterClose() const + { + return iWaitAfterClose; + } + TInt TActionRef::WgIndex() const { return iWgIndex;