Mercurial > hg > orthanc-stone
view Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 676:1b47f17863ba am-dev
codegen: using an ordereddict loader instead of sort the keys -> the delcared ordered in the yaml is preserved in the generated code which is more meaningfull than the alphabetical order
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Thu, 16 May 2019 09:49:30 +0200 |
parents | 79bb0a02d1cc |
children |
line wrap: on
line source
#pragma once #include <string> #include <Framework/Messages/IObserver.h> #include <Applications/IStoneApplication.h> namespace OrthancStone { class WasmPlatformApplicationAdapter : public IObserver { IStoneApplication& application_; public: WasmPlatformApplicationAdapter(MessageBroker& broker, IStoneApplication& application); virtual void HandleSerializedMessageFromWeb(std::string& output, const std::string& input); virtual void NotifyStatusUpdateFromCppToWebWithString(const std::string& statusUpdateMessage); virtual void NotifyStatusUpdateFromCppToWebWithSerializedMessage(const std::string& statusUpdateMessage); }; }