SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
transformer.hpp
1// This file is part of slideio project.
2// It is subject to the license terms in the LICENSE file found in the top-level directory
3// of this distribution and at http://slideio.com/license.html.
4#pragma once
5#include "slideio/transformer/transformer_def.hpp"
6#include <memory>
7#include <list>
8
9namespace slideio
10{
11 class Scene;
12 class Transformation;
13 class TransformationWrapper;
14 std::shared_ptr<slideio::Scene> SLIDEIO_TRANSFORMER_EXPORTS transformScene(std::shared_ptr<Scene> scene, Transformation& transform);
15 std::shared_ptr<slideio::Scene> SLIDEIO_TRANSFORMER_EXPORTS transformSceneEx(std::shared_ptr<Scene> scene, std::list<std::shared_ptr<Transformation>>& transforms);
16 std::shared_ptr<slideio::Scene> SLIDEIO_TRANSFORMER_EXPORTS transformScene(std::shared_ptr<Scene> scene, TransformationWrapper& transform);
17 std::shared_ptr<slideio::Scene> SLIDEIO_TRANSFORMER_EXPORTS transformSceneEx(std::shared_ptr<Scene> scene, std::list<std::shared_ptr<TransformationWrapper>>& transforms);
18}
Definition: exceptions.hpp:15