view Platforms/Wasm/WasmViewport.cpp @ 608:357e744c56cc

Removed MSVC specific code (option already available thru Orthanc cmake)
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 30 Apr 2019 07:54:01 +0200
parents 092db46c6291
children 4f2416d519b4
line wrap: on
line source

#include "WasmViewport.h"

#include <vector>
#include <memory>

std::vector<std::shared_ptr<OrthancStone::WidgetViewport>> wasmViewports;

void AttachWidgetToWasmViewport(const char* htmlCanvasId, OrthancStone::IWidget* centralWidget) {
    std::shared_ptr<OrthancStone::WidgetViewport> viewport(CreateWasmViewportFromCpp(htmlCanvasId));
    viewport->SetCentralWidget(centralWidget);

    wasmViewports.push_back(viewport);
}