blob: 2e4c1de3cd6b5b7433bdfca30b08046ce8d2403f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nokia - Initial API and implementation
*******************************************************************************/
#pragma once
#include "AgentAction.h"
#include "TCFContext.h"
#include "WinProcess.h"
#include "WinThread.h"
class ResumeContextAction: public AgentAction {
public:
ResumeContextAction(const AgentActionParams& params, WinProcess& process, WinThread& thread, long resumeMode);
virtual ~ResumeContextAction(void);
void Run();
private:
WinProcess& process_;
WinThread& thread_;
long resumeMode_;
};