#include "server/commands/BaseCommand.h" BaseCommand::BaseCommand(string name) : name(name) { } BaseCommand::~BaseCommand() { } const string& BaseCommand::getName() const { return name; }