#ifndef _CONTEXTTONWDAFAPIIMPL_H_ #define _CONTEXTTONWDAFAPIIMPL_H_ #include <memory> #include <pistache/endpoint.h> #include <pistache/http.h> #include <pistache/router.h> #include <pistache/optional.h> #include <string>
#include "ContextToNwdafApi.hpp"
namespace oai { namespace udm { namespace api { class ContextToNwdafApiImpl : public oai::udm::api::ContextToNwdafApi { public: ContextToNwdafApiImpl(std::shared_ptr<Pistache::Rest::Router>); ~ContextToNwdafApiImpl() {} void get_context_to_nwdaf( Pistache::Http::ResponseWriter &response); }; } // namespace api } // namespace udm } // namespace oai #endif