view irccdctl/cli-plugin-unload.hpp @ 341:45065955ba2d

Irccd: many changes related to new split
author David Demelier <markand@malikania.fr>
date Sat, 12 Nov 2016 22:03:17 +0100
parents bf23ba419ee6
children
line wrap: on
line source

/*
 * cli-plugin-unload.hpp -- implementation of irccdctl plugin-unload
 *
 * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef IRCCDCTL_CLI_PLUGIN_UNLOAD_HPP
#define IRCCDCTL_CLI_PLUGIN_UNLOAD_HPP

/**
 * \file cli-plugin-unload.hpp
 * \brief Implementation of irccdctl plugin-unload.
 */

#include "cli.hpp"

namespace irccd {

namespace cli {

/**
 * \brief Implementation of irccdctl plugin-unload.
 */
class PluginUnloadCli : public Cli {
public:
    PluginUnloadCli();

    /**
     * \copydoc Cli::exec
     */
    void exec(Irccdctl &irccdctl, const std::vector<std::string> &args) override;
};

} // !cli

} // !irccd

#endif // !IRCCDCTL_CLI_PLUGIN_UNLOAD_HPP