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