DRDE/ACTK1_0/se/RegistrantTransferCommandTy...

21 lines
529 B
C++
Raw Normal View History

#ifndef REGISTRANT_TRANSFER_COMMAND_TYPE
#define REGISTRANT_TRANSFER_COMMAND_TYPE
2014-01-16 20:28:52 +00:00
#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 */