tool/Command.cpp
changeset 1826 ec6223c3b7ec
parent 1804 742607c464c4
child 1834 67fc217d7341
equal deleted inserted replaced
1825:65781b048a47 1826:ec6223c3b7ec
    26  *  industrial property and similar rights of Beckhoff Automation GmbH.
    26  *  industrial property and similar rights of Beckhoff Automation GmbH.
    27  *
    27  *
    28  ****************************************************************************/
    28  ****************************************************************************/
    29 
    29 
    30 #include "Command.h"
    30 #include "Command.h"
       
    31 #include "MasterDevice.h"
    31 
    32 
    32 /*****************************************************************************/
    33 /*****************************************************************************/
    33 
    34 
    34 Command::Command(const string &name, const string &briefDesc):
    35 Command::Command(const string &name, const string &briefDesc):
    35     name(name),
    36     name(name),
    41 /*****************************************************************************/
    42 /*****************************************************************************/
    42 
    43 
    43 Command::~Command()
    44 Command::~Command()
    44 {
    45 {
    45 }
    46 }
       
    47 
       
    48 /*****************************************************************************/
       
    49 
       
    50 void Command::setMasterIndices(const MasterIndexList &indices)
       
    51 {
       
    52     masterIndices = indices;
       
    53 };
    46 
    54 
    47 /*****************************************************************************/
    55 /*****************************************************************************/
    48 
    56 
    49 void Command::setVerbosity(Verbosity v)
    57 void Command::setVerbosity(Verbosity v)
    50 {
    58 {