#pragma once #include "sender.hpp" #include class PerformanceClient { std::string node_name; Sender sender; boost::timer::cpu_timer timer; public: PerformanceClient(std::string name, boost::asio::io_service& io_service, std::string host, std::string port); void send(std::string column); };