DRDE/ACTK1_0/se/RegistrantTransferCommandTy...

21 lines
529 B
C++

#ifndef REGISTRANT_TRANSFER_COMMAND_TYPE
#define REGISTRANT_TRANSFER_COMMAND_TYPE
#include <iostream>
#include "se/CommandType.hpp"
#include <string>
class RegistrantTransferCommandType : public CommandType
{
public:
RegistrantTransferCommandType() : CommandType(getCommandName()) {};
std::string getCommandName() const { return cmdName; };
std::string toString() const { return cmdName; };
private:
static const std::string cmdName;
};
#endif /* REGISTRANT_TRANSFER_COMMAND_TYPE */