/** @file * @author Edouard DUPIN * @copyright 2016, Edouard DUPIN, all right reserved * @license APACHE v2.0 (see license file) */ #pragma once #include #include namespace jus { class GateWayService { public: ememory::SharedPtr m_interfaceService; std::string m_name; public: GateWayService(const ememory::SharedPtr& _interface); virtual ~GateWayService(); }; }