comparison irccdctl/cli.hpp @ 448:9be4f8a5cf1a

Irccdctl: implement rule-list
author David Demelier <markand@malikania.fr>
date Wed, 05 Jul 2017 18:20:26 +0200
parents c6fbb6e0e06d
children 9968eac538e6
comparison
equal deleted inserted replaced
446:f3c27790d0d1 448:9be4f8a5cf1a
584 */ 584 */
585 void exec(Irccdctl &client, const std::vector<std::string> &args) override; 585 void exec(Irccdctl &client, const std::vector<std::string> &args) override;
586 }; 586 };
587 587
588 /* 588 /*
589 * RuleListCli.
590 * ------------------------------------------------------------------
591 */
592
593 /**
594 * \brief Implementation of irccdctl rule-list.
595 */
596 class RuleListCli : public Cli {
597 public:
598 /**
599 * Default constructor.
600 */
601 RuleListCli();
602
603 /**
604 * \copydoc Cli::exec
605 */
606 void exec(Irccdctl &client, const std::vector<std::string> &args) override;
607 };
608
609 /*
589 * WatchCli. 610 * WatchCli.
590 * ------------------------------------------------------------------ 611 * ------------------------------------------------------------------
591 */ 612 */
592 613
593 /** 614 /**