annotate Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 928:1b49e78d91d0

fix for older compilers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 23 Jul 2019 11:50:21 +0200
parents 79bb0a02d1cc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
307
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
1 #pragma once
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
2
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
3 #include <string>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
4 #include <Framework/Messages/IObserver.h>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
5 #include <Applications/IStoneApplication.h>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
6
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
7 namespace OrthancStone
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
8 {
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
9 class WasmPlatformApplicationAdapter : public IObserver
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
10 {
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
11 IStoneApplication& application_;
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
12 public:
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
13 WasmPlatformApplicationAdapter(MessageBroker& broker, IStoneApplication& application);
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
14
508
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
15 virtual void HandleSerializedMessageFromWeb(std::string& output, const std::string& input);
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
16 virtual void NotifyStatusUpdateFromCppToWebWithString(const std::string& statusUpdateMessage);
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
17 virtual void NotifyStatusUpdateFromCppToWebWithSerializedMessage(const std::string& statusUpdateMessage);
307
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
18 };
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
19 }