mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 20:01:44 +08:00
30 lines
660 B
C++
30 lines
660 B
C++
/*****************************************************************************
|
|
*
|
|
* $Id$
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __COMMANDDOWNLOAD_H__
|
|
#define __COMMANDDOWNLOAD_H__
|
|
|
|
#include "SdoCommand.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
class CommandDownload:
|
|
public SdoCommand
|
|
{
|
|
public:
|
|
CommandDownload();
|
|
|
|
string helpString() const;
|
|
void execute(MasterDevice &, const StringVector &);
|
|
|
|
protected:
|
|
enum {DefaultBufferSize = 1024};
|
|
};
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif
|