Odil
A C++11 library for the DICOM standard
ApplicationContext.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 _12bdb8f1_48c2_44d0_957a_bc1fb6f6733a
10 #define _12bdb8f1_48c2_44d0_957a_bc1fb6f6733a
11 
12 #include <istream>
13 #include <string>
14 
15 #include "odil/odil.h"
16 #include "odil/pdu/Object.h"
17 
18 namespace odil
19 {
20 
21 namespace pdu
22 {
23 
27 class ODIL_API ApplicationContext: public Object
28 {
29 public:
31  ApplicationContext(std::string const & name);
32 
34  ApplicationContext(std::istream & stream);
35 
37  std::string get_name() const;
38 
40  void set_name(std::string const & name);
41 };
42 
43 }
44 
45 }
46 
47 #endif // _12bdb8f1_48c2_44d0_957a_bc1fb6f6733a
odil
Definition: Association.h:23
ODIL_API
#define ODIL_API
Definition: odil.h:27
odil.h
Object.h