Mercurial > hg > orthanc-stone
view Framework/Layers/DicomStructureSetRendererFactory.h @ 124:5099aaa53bd0 wasm
removal of OrthancSeriesLoader
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 08 Oct 2017 10:52:24 +0200 |
parents | ed0003f6102c |
children | c993693e9e63 |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017 Osimis, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include "../Toolbox/DicomStructureSet.h" #include "../Toolbox/IWebService.h" #include "LayerSourceBase.h" namespace OrthancStone { class DicomStructureSetRendererFactory : public LayerSourceBase, private IWebService::ICallback { private: class Renderer; class Operation; virtual void NotifyError(const std::string& uri, Orthanc::IDynamicObject* payload); virtual void NotifySuccess(const std::string& uri, const void* answer, size_t answerSize, Orthanc::IDynamicObject* payload); IWebService& orthanc_; std::auto_ptr<DicomStructureSet> structureSet_; public: DicomStructureSetRendererFactory(IWebService& orthanc, const std::string& instance); virtual bool GetExtent(std::vector<Vector>& points, const CoordinateSystem3D& viewportSlice) { return false; } virtual void ScheduleLayerCreation(const CoordinateSystem3D& viewportSlice); }; }