00001 /*************************************************************************** 00002 *cr 00003 *cr (C) Copyright 1995-2019 The Board of Trustees of the 00004 *cr University of Illinois 00005 *cr All Rights Reserved 00006 *cr 00007 ***************************************************************************/ 00008 00009 #ifndef CMD_PLUGIN_H__ 00010 #define CMD_PLUGIN_H__ 00011 00012 #include "Command.h" 00013 00015 class CmdPluginUpdate: public Command { 00016 protected: 00017 void create_text() { 00018 *cmdText << "plugin update" << ends; 00019 } 00020 public: 00021 CmdPluginUpdate() : Command(PLUGIN_UPDATE) { } 00022 }; 00023 00024 #endif