tool/CommandDownload.h
author Florian Pose <fp@igh-essen.com>
Mon, 28 Jul 2008 14:43:00 +0000
changeset 1167 9e0ebb38e301
parent 1142 59be91dfcbe1
child 1184 75cd6681eb08
permissions -rw-r--r--
Improved help.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDDOWNLOAD_H__
#define __COMMANDDOWNLOAD_H__

#include "Command.h"

/****************************************************************************/

class CommandDownload:
    public Command
{
    public:
        CommandDownload();

        string helpString() const;
        void execute(MasterDevice &, const StringVector &);

	protected:
		enum {DefaultBufferSize = 1024};
};

/****************************************************************************/

#endif