tool/CommandDownload.h
author Florian Pose <fp@igh-essen.com>
Fri, 08 Aug 2008 13:47:23 +0000
changeset 1198 be606e9caba4
parent 1184 75cd6681eb08
child 1363 11c0b2caa253
permissions -rw-r--r--
Fixed race concerning thread signaling when master thread had no
opportunity to run, but shall be killed immediately.
/*****************************************************************************
 *
 * $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