comparison irccdctl/main.cpp @ 451:1fdedd2977d2

Irccdctl: implement rule-move
author David Demelier <markand@malikania.fr>
date Fri, 07 Jul 2017 18:03:18 +0200
parents c8c68d4bf555
children 2170aa0e38aa
comparison
equal deleted inserted replaced
450:c8c68d4bf555 451:1fdedd2977d2
522 commands.push_back(std::make_unique<cli::ServerPartCli>()); 522 commands.push_back(std::make_unique<cli::ServerPartCli>());
523 commands.push_back(std::make_unique<cli::ServerReconnectCli>()); 523 commands.push_back(std::make_unique<cli::ServerReconnectCli>());
524 commands.push_back(std::make_unique<cli::ServerTopicCli>()); 524 commands.push_back(std::make_unique<cli::ServerTopicCli>());
525 commands.push_back(std::make_unique<cli::RuleListCli>()); 525 commands.push_back(std::make_unique<cli::RuleListCli>());
526 commands.push_back(std::make_unique<cli::RuleInfoCli>()); 526 commands.push_back(std::make_unique<cli::RuleInfoCli>());
527 commands.push_back(std::make_unique<cli::RuleMoveCli>());
527 commands.push_back(std::make_unique<cli::RuleRemoveCli>()); 528 commands.push_back(std::make_unique<cli::RuleRemoveCli>());
528 commands.push_back(std::make_unique<cli::WatchCli>()); 529 commands.push_back(std::make_unique<cli::WatchCli>());
529 } 530 }
530 531
531 } // !namespace 532 } // !namespace