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 
25 class ODIL_API AsynchronousOperationsWindow: public Object
26 {
27 public:
29  static uint8_t const type=0x53;
30 
32  AsynchronousOperationsWindow(
33  uint16_t maximum_number_operations_invoked,
34  uint16_t maximum_number_operations_performed);
35 
37  AsynchronousOperationsWindow(std::istream & stream);
38 
40  uint16_t get_maximum_number_operations_invoked() const;
41 
43  void set_maximum_number_operations_invoked(uint16_t value);
44 
46  uint16_t get_maximum_number_operations_performed() const;
47 
49  void set_maximum_number_operations_performed(uint16_t value);
50 };
51 
52 }
53 
54 }
55 
56 #endif // _a24346ab_a585_4412_9237_5b2142f2d6eb
odil
Definition: Association.h:23
ODIL_API
#define ODIL_API
Definition: odil.h:27
odil.h
Object.h
odil::pdu::AsynchronousOperationsWindow
Asynchronous Operations Window Sub-Item (PS 3.7, D.3.3.3.1 and D.3.3.3.2).
Definition: AsynchronousOperationsWindow.h:34