/*******************************************************
 * Copyright (C) 2017-2020 CENOS Ltd vg@cenos-platform.com
 *
 * This file is part of CENOS.
 *
 * CENOS can not be copied and/or distributed without the express
 * permission of CENOS Ltd
 *******************************************************/
/**
 *  \brief     Mesh_Worker class.
 *  \details   Allows calling commands from Mesh module
 *  \author    vadims
 *  \date      Dec 03, 2019
 *  \copyright CENOS LLC
 */

#ifndef MESHWORKER_HPP_
#define MESHWORKER_HPP_

#include "Worker.h"

class Mesh_Worker : public Worker
{
public:
	Mesh_Worker(std::shared_ptr<Job>&);
	messagedata run(MessageQueue_) override;

};

#endif // MESHWORKER_HPP_
