/usr/include/odil/pdu/PresentationContext.h is in libodil0-dev 0.4.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | /*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for details.
************************************************************************/
#ifndef _30f1a581_9ae6_4a02_a455_bf2b6ea58bc6
#define _30f1a581_9ae6_4a02_a455_bf2b6ea58bc6
#include <cstdint>
#include <istream>
#include <string>
#include <vector>
#include "odil/pdu/Object.h"
namespace odil
{
namespace pdu
{
/**
* @brief Presentation Context item, either for a A-ASSOCIATE-RQ PDU (PS 3.8,
* 9.3.2.2) or for a A-ASSOCIATE-AC PDU (PS 3.8, 9.3.3.2).
*/
class PresentationContext: public Object
{
public:
/// @brief Constructor
PresentationContext();
/// @brief Read from a stream.
PresentationContext(std::istream & stream);
/// @brief Destructor, make the class pure virtual.
virtual ~PresentationContext() =0;
/// @brief Return the Item-type.
uint8_t get_item_type() const;
/// @brief Return the Presentation context id.
uint8_t get_id() const;
/// @brief Set the Presentation context id.
void set_id(uint8_t id);
protected:
/// @brief Create an Abstract Syntax or Transfer Syntax sub-item.
static Item _make_string_item(
std::string const & type, std::string const & value);
/// @brief Add common fields.
void _add_fields();
/// @brief Return the Abstract or Transfer syntaxes.
std::vector<std::string> _get_syntaxes(std::string const & type) const;
/// @brief Set the Abstract or Transfer syntaxes.
void _set_syntaxes(
std::string const & type, std::vector<std::string> const & syntaxes);
};
}
}
#endif // _30f1a581_9ae6_4a02_a455_bf2b6ea58bc6
|