view Platforms/Wasm/WasmViewport.h @ 512:72faa732532b bgo-commands-codegen

removed <optional> include which seems not used and is not availble with VS2015
author Alain Mazy <alain@mazy.be>
date Fri, 08 Mar 2019 18:34:26 +0100
parents 092db46c6291
children 4f2416d519b4
line wrap: on
line source

#pragma once

#include <Framework/Viewport/WidgetViewport.h>

#include <emscripten/emscripten.h>

#ifdef __cplusplus
extern "C" {
#endif

  // JS methods accessible from C++
  extern OrthancStone::WidgetViewport* CreateWasmViewportFromCpp(const char* htmlCanvasId);

#ifdef __cplusplus
}
#endif

extern void AttachWidgetToWasmViewport(const char* htmlCanvasId, OrthancStone::IWidget* centralWidget);