#ifndef __BCCLI_TESTSERVICE_HPP__ #define __BCCLI_TESTSERVICE_HPP__ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ /** * @file * @brief header file for the testservice subcommand of the bccli application * @author Dominik Meyer * @date 2019-02-06 * @copyright 2019 no yet defined */ #include #include namespace BCCLI { void testservice(const std::string &broadcastAddress, const std::string &srcAddress, unsigned short port); namespace testService { class receiver : public BC::receiveable { public: void receive(BC::Message *m) override; }; }; // namespace testService }; #endif