/*============================================================================= Library: CTK Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #ifndef ctkDicomExchangeInterface_H #define ctkDicomExchangeInterface_H #include #include #include "ctkDicomAppHostingTypes.h" #include class org_commontk_dah_core_EXPORT ctkDicomExchangeInterface : public QObject { Q_OBJECT public: // Data exchange interface methods virtual bool notifyDataAvailable(ctkDicomAppHosting::AvailableData data, bool lastData) = 0; virtual QList* getData( QList objectUUIDs, QList acceptableTransferSyntaxUIDs, bool includeBulkData) = 0; virtual void releaseData(QList objectUUIDs) = 0; // 8.3.3 getAsModels(objectUUIDs : ArrayOfUUID, classUID : UID, supportedInfosetTypes : ArrayOfMimeType) : ModelSetDescriptor 33 // 8.3.4 queryModel(models : ArrayOfUUID, xpaths : ArrayOfString) : ArrayOfQueryResult 34 // 8.3.5 queryInfoset(models : ArrayOfUUID, xpaths : ArrayOfString) : ArrayOfQueryResultInfoset 34 // 8.3.7 releaseModels(objectUUIDs : ArrayOfUUID): void }; #endif // ctkDicomExchangeInterface_H