fp@2666: /***************************************************************************** fp@2666: * fp@2666: * Copyright (C) 2006-2017 Florian Pose, Ingenieurgemeinschaft IgH fp@2666: * fp@2666: * This file is part of the IgH EtherCAT Master. fp@2666: * fp@2666: * The IgH EtherCAT Master is free software; you can redistribute it and/or fp@2666: * modify it under the terms of the GNU General Public License version 2, as fp@2666: * published by the Free Software Foundation. fp@2666: * fp@2666: * The IgH EtherCAT Master is distributed in the hope that it will be useful, fp@2666: * but WITHOUT ANY WARRANTY; without even the implied warranty of fp@2666: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General fp@2666: * Public License for more details. fp@2666: * fp@2666: * You should have received a copy of the GNU General Public License along fp@2666: * with the IgH EtherCAT Master; if not, write to the Free Software fp@2666: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@2666: * fp@2666: * --- fp@2666: * fp@2666: * The license mentioned above concerns the source code only. Using the fp@2666: * EtherCAT technology and brand is only permitted in compliance with the fp@2666: * industrial property and similar rights of Beckhoff Automation GmbH. fp@2666: * fp@2666: ****************************************************************************/ fp@2666: fp@2666: #ifndef __COMMANDCRC_H__ fp@2666: #define __COMMANDCRC_H__ fp@2666: fp@2666: #include "Command.h" fp@2666: #include "DataTypeHandler.h" fp@2666: fp@2666: /****************************************************************************/ fp@2666: fp@2666: class CommandCrc: fp@2666: public Command, fp@2666: public DataTypeHandler fp@2666: { fp@2666: public: fp@2666: CommandCrc(); fp@2666: fp@2666: string helpString(const string &) const; fp@2666: void execute(const StringVector &); fp@2666: }; fp@2666: fp@2666: /****************************************************************************/ fp@2666: fp@2666: #endif