Mercurial > hg > orthanc-stone
view Platforms/Wasm/IStoneApplicationToWebApplicationAdapter.h @ 295:b04b13810540 am-2
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
author | am@osimis.io |
---|---|
date | Tue, 04 Sep 2018 15:09:42 +0200 |
parents | 2038d76bf13f |
children |
line wrap: on
line source
#pragma once #include <string> namespace OrthancStone { class IStoneApplicationToWebApplicationAdapter { public: virtual void HandleMessageFromWeb(std::string& output, const std::string& input) = 0; virtual void NotifyStatusUpdateFromCppToWeb(const std::string& statusUpdateMessage) = 0; }; }