/usr/include/dcmtk/dcmnet/dccfprmp.h is in libdcmtk2-dev 3.6.0-15.
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | /*
*
* Copyright (C) 1994-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmnet
*
* Author: Marco Eichelberg
*
* Purpose:
* class DcmProfileEntry
* class DcmProfileMap
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:17:22 $
* CVS/RCS Revision: $Revision: 1.4 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCCFPRMP_H
#define DCCFPRMP_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofstring.h" /* for class OFString */
#include "dcmtk/ofstd/ofcond.h" /* for class OFCondition */
#include "dcmtk/dcmnet/dcmsmap.h" /* for class DcmSimpleMap<> */
/** this helper class is a profile list entry.
* Not intended for use by the end user.
*/
class DcmProfileEntry
{
public:
/** constructor
* @param presentationContextGroup symbolic identifier of the presentation context list
* @param roleSelectionGroup symbolic identifier of the role selection list, may be empty
* @param extendedNegotiationGroup symbolic identifier of the extended negotiation list, may be empty
*/
DcmProfileEntry(
const OFString& presentationContextGroup,
const OFString& roleSelectionGroup,
const OFString& extendedNegotiationGroup);
/// copy constructor
DcmProfileEntry(const DcmProfileEntry& arg);
/// destructor
~DcmProfileEntry();
/** returns the presentation context key
* @return presentation context key
*/
const char *getPresentationContextKey() const;
/** returns the role selection key
* @return role selection key, NULL if empty
*/
const char *getRoleSelectionKey() const;
/** returns the extended negotiation key
* @return extended negotiation key, NULL if empty
*/
const char *getExtendedNegotiationKey() const;
/** comparison operator.
* @param arg object to compare with
* @return true if equal
*/
OFBool operator==(const DcmProfileEntry& arg) const
{
return (presentationContextGroup_ == arg.presentationContextGroup_)
&& (roleSelectionGroup_ == arg.roleSelectionGroup_)
&& (extendedNegotiationGroup_ == arg.extendedNegotiationGroup_);
}
private:
/// private undefined copy assignment operator
DcmProfileEntry& operator=(const DcmProfileEntry& arg);
/// symbolic identifier of the presentation context list
OFString presentationContextGroup_;
/// symbolic identifier of the role selection list, may be empty
OFString roleSelectionGroup_;
/// symbolic identifier of the extended negotiation list, may be empty
OFString extendedNegotiationGroup_;
};
/** this helper class maintains a map of association negotiation profile keys.
* Not intended for use by the end user.
*/
class DcmProfileMap
{
public:
/// constructor
DcmProfileMap();
/// destructor
~DcmProfileMap();
/** add new entry to list within map.
* @param key map key, must not exist in map
* @param presentationContextKey symbolic identifier of the presentation context list, must not be NULL
* @param roleSelectionKey symbolic identifier of the role selection list, may be NULL
* @param extendedNegotiationKey symbolic identifier of the extended negotiation list, may be NULL
* @return EC_Normal if successful, an error code otherwise
*/
OFCondition add(
const char *key,
const char *presentationContextKey,
const char *roleSelectionKey,
const char *extendedNegotiationKey);
/** checks if the key is known
* @param key key name, must not be NULL
* @return true if key is known, false otherwise
*/
OFBool isKnownKey(const char *key) const;
/** returns the presentation context key for the given profile
* @param key key name, must not be NULL
* @return presentation context key, NULL if not found
*/
const char *getPresentationContextKey(const char *key) const;
/** returns the role selection key for the given profile
* @param key key name, must not be NULL
* @return role selection key, NULL if not found or empty
*/
const char *getRoleSelectionKey(const char *key) const;
/** returns the extended negotiation key for the given profile
* @param key key name, must not be NULL
* @return extended negotiation key, NULL if not found or empty
*/
const char *getExtendedNegotiationKey(const char *key) const;
private:
/// private undefined copy constructor
DcmProfileMap(const DcmProfileMap& arg);
/// private undefined copy assignment operator
DcmProfileMap& operator=(const DcmProfileMap& arg);
/// map of profiles
DcmSimpleMap<DcmProfileEntry *> map_;
};
#endif
/*
* CVS/RCS Log
* $Log: dccfprmp.h,v $
* Revision 1.4 2010-10-14 13:17:22 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.3 2005/12/08 16:02:12 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.2 2003/06/18 08:16:16 meichel
* Added comparison operators to keep MSVC5 compiler happy
*
* Revision 1.1 2003/06/10 14:27:33 meichel
* Initial release of class DcmAssociationConfiguration and support
* classes. This class maintains a list of association negotiation
* profiles that can be addressed by symbolic keys. The profiles may
* be read from a configuration file.
*
*
*/
|