BaseCommand.cpp 195 B

1234567891011121314
  1. #include "server/commands/BaseCommand.h"
  2. BaseCommand::BaseCommand(string name) : name(name)
  3. {
  4. }
  5. BaseCommand::~BaseCommand()
  6. {
  7. }
  8. const string& BaseCommand::getName() const
  9. {
  10. return name;
  11. }