blob: 1e51846e2beae12031fb919f843e55a1a8d4d7c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 AIT
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Filip Andren - initial API and implementation and/or initial documentation
*******************************************************************************/
#ifndef CMDADDPROCESSVAR_H_
#define CMDADDPROCESSVAR_H_
#include "ICmd.h"
class COpcConnectionImpl;
class COpcProcessVar;
class CCmd_AddOPCProcessVar : public ICmd{
public:
CCmd_AddOPCProcessVar(COpcConnectionImpl *paConnection, COpcProcessVar* paNewItem);
~CCmd_AddOPCProcessVar() override;
void runCommand() override;
const char* getCommandName() const override;
private:
COpcConnectionImpl *mOpcConn;
COpcProcessVar* mNewProcessVar;
};
#endif //CMDADDPROCESSVAR_H_