/*******************************************************
 * 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     Template_Worker class.
  *  \details   Allows creating geometry and mesh from templates
  *  \author    vadims
  *  \date      Oct 29, 2020
  *  \copyright CENOS LLC
  */

#pragma once

#include "Worker.h"

class Template_Worker : public Worker
{
public:
	Template_Worker(std::shared_ptr<Job>&);
	messagedata run(MessageQueue_) override;

};
