blob: 475fd9bd0b2ea4f3a3b1b214c240da434c611408 [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"
class TerminateProcessAction: public AgentAction {
public:
TerminateProcessAction(const AgentActionParams& params, ContextOSID processID);
virtual ~TerminateProcessAction(void);
void Run();
private:
ContextOSID processID_;
};