SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
plugin.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_PLUGIN_UNKNOWN_PLUGIN_PLUGIN_HPP_
6#define SKYWAY_PLUGIN_UNKNOWN_PLUGIN_PLUGIN_HPP_
7
8#include "skyway/core/interface/remote_member_plugin.hpp"
9
10namespace skyway {
11namespace plugin {
12namespace unknown_plugin {
13
16public:
17 std::string GetSubtype() const override;
19 std::shared_ptr<core::interface::RemoteMember> Create(std::shared_ptr<core::interface::Channel> channel,
20 const model::Member& dto) const override;
22};
23
24} // namespace unknown_plugin
25} // namespace plugin
26} // namespace skyway
27
28#endif /* SKYWAY_PLUGIN_UNKNOWN_PLUGIN_PLUGIN_HPP_ */
Definition remote_member_plugin.hpp:16
機能として対応していないPlugin
Definition plugin.hpp:15
std::string GetSubtype() const override
Pluginのサブタイプ
メンバー情報
Definition domain.hpp:53