Odil
A C++11 library for the DICOM standard
AsynchronousOperationsWindow.h
Go to the documentation of this file.
1 /*************************************************************************
2  * odil - Copyright (C) Universite de Strasbourg
3  * Distributed under the terms of the CeCILL-B license, as published by
4  * the CEA-CNRS-INRIA. Refer to the LICENSE file or to
5  * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
6  * for details.
7  ************************************************************************/
8 
9 #ifndef _a24346ab_a585_4412_9237_5b2142f2d6eb
10 #define _a24346ab_a585_4412_9237_5b2142f2d6eb
11 
12 #include <cstdint>
13 #include <istream>
14 
15 #include "odil/odil.h"
16 #include "odil/pdu/Object.h"
17 
18 namespace odil
19 {
20 
21 namespace pdu
22 {
23 
26 {
27 public:
29  static uint8_t const type=0x53;
30 
33  uint16_t maximum_number_operations_invoked,
34  uint16_t maximum_number_operations_performed);
35 
37  AsynchronousOperationsWindow(std::istream & stream);
38 
41 
44 
47 
50 };
51 
52 }
53 
54 }
55 
56 #endif // _a24346ab_a585_4412_9237_5b2142f2d6eb
Asynchronous Operations Window Sub-Item (PS 3.7, D.3.3.3.1 and D.3.3.3.2).
Definition: AsynchronousOperationsWindow.h:26
uint16_t get_maximum_number_operations_invoked() const
Return the Maximum-number-operations-invoked.
void set_maximum_number_operations_performed(uint16_t value)
Set the Maximum-number-operations-performed.
AsynchronousOperationsWindow(uint16_t maximum_number_operations_invoked, uint16_t maximum_number_operations_performed)
Create a Asynchronous Operations Window item.
uint16_t get_maximum_number_operations_performed() const
Return the Maximum-number-operations-performed.
AsynchronousOperationsWindow(std::istream &stream)
Read a Asynchronous Operations Window item from a stream.
void set_maximum_number_operations_invoked(uint16_t value)
Set the Maximum-number-operations-invoked.
Base class for all PDU-related high-level objects (PDU, items and sub-items).
Definition: Object.h:28
Definition: Association.h:25
#define ODIL_API
Definition: odil.h:28