tool/CommandVersion.h
changeset 1165 c5d6e28eec91
child 1363 11c0b2caa253
equal deleted inserted replaced
1164:bc6a17d40275 1165:c5d6e28eec91
       
     1 /*****************************************************************************
       
     2  *
       
     3  * $Id$
       
     4  *
       
     5  ****************************************************************************/
       
     6 
       
     7 #ifndef __COMMANDVERSION_H__
       
     8 #define __COMMANDVERSION_H__
       
     9 
       
    10 #include "Command.h"
       
    11 
       
    12 /****************************************************************************/
       
    13 
       
    14 class CommandVersion:
       
    15     public Command
       
    16 {
       
    17     public:
       
    18         CommandVersion();
       
    19 
       
    20         string helpString() const;
       
    21         void execute(MasterDevice &, const StringVector &);
       
    22 };
       
    23 
       
    24 /****************************************************************************/
       
    25 
       
    26 #endif