Mercurial > hg > orthanc-stone
view Platforms/WebAssembly/WasmWebService.h @ 231:5027cb2feb51 am
viewport is now part of the Application itself and not global anymore
author | am@osimis.io |
---|---|
date | Thu, 14 Jun 2018 18:49:19 +0200 |
parents | d7b2590744f8 |
children |
line wrap: on
line source
#pragma once #include <Framework/Toolbox/IWebService.h> namespace OrthancStone { class WasmWebService : public IWebService { private: std::string base_; // Private constructor => Singleton design pattern WasmWebService() : base_("../../") { } public: static WasmWebService& GetInstance() { static WasmWebService instance; return instance; } void SetBaseUrl(const std::string base); virtual void ScheduleGetRequest(ICallback& callback, const std::string& uri, Orthanc::IDynamicObject* payload); virtual void SchedulePostRequest(ICallback& callback, const std::string& uri, const std::string& body, Orthanc::IDynamicObject* payload); virtual void Start() { } virtual void Stop() { } }; }