* @author Alfonso Dominguez <alfonso.dominguez@tecnalia.com>
* @date 2020
*
* Copyright 2020 Tecnalia Research & Innovation.
* Distributed under the GNU GPL v3.
* For full terms see https://www.gnu.org/licenses/gpl.txt
*
* @brief CLASS client for testing purposes
*/
#include<string>
#include<communication/udp_client.hpp>
#include<iostream>
#include<boost/chrono.hpp>
#include<boost/thread/thread.hpp>
intmain(intargc,char*argv[])
{
if(argc!=4)
{
std::cerr<<"ERROR: Executable expects 3 arguments (IP and port where the server is listening) and port where the client will wait for server msgs"<<std::endl;