view Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 961:92e32e263ae9 toa2019082601

Removed log in IsContextLost (too many calls) + removed glGetError guards on calls (expensive) + added shared_ptr ref count dump in LoaderCache (still needs to figure that one out)
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 26 Aug 2019 11:01:53 +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);
  };
}