1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*=============================================================================
- 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 <QRect>
- #include <QObject>
- #include "ctkDicomAppHostingTypes.h"
- struct QUuid;
- struct ctkDicomExchangeInterface
- {
- virtual ~ctkDicomExchangeInterface() {};
- // Data exchange interface methods
- /**
- * The source of the data calls this method with descriptions of the available data that it can provide to the
- * recipient. If the source of the data expects that additional data will become available, it shall pass FALSE
- * in the lastData parameter. Otherwise, it shall pass TRUE.
- * \return TRUE if the recipient of the data successfully received the AvailableData list.
- */
- virtual bool notifyDataAvailable(const ctkDicomAppHosting::AvailableData& data, bool lastData) = 0;
- virtual QList<ctkDicomAppHosting::ObjectLocator> getData(
- const QList<QUuid>& objectUUIDs,
- const QList<QString>& acceptableTransferSyntaxUIDs,
- bool includeBulkData) = 0;
- /**
- * The recipient of data invokes this method to release access to binary data provided by the source of the
- * data through a getData() call. The ArrayOfUUID identifies the data streams that the recipient is releasing.
- */
- virtual void releaseData(const QList<QUuid>& 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
- };
- Q_DECLARE_INTERFACE(ctkDicomExchangeInterface, "org.commontk.dah.core.ExchangeInterface")
- #endif // ctkDicomExchangeInterface_H
|