/usr/include/dcmtk/dcmsr/dsrtncsr.h is in libdcmtk2-dev 3.6.0-9.
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | /*
*
* Copyright (C) 2000-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: dcmsr
*
* Author: Joerg Riesmeier
*
* Purpose:
* classes: DSRTreeNodeCursor
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:16:33 $
* CVS/RCS Revision: $Revision: 1.13 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DSRTNCSR_H
#define DSRTNCSR_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/ofstring.h"
#include "dcmtk/ofstd/ofstack.h"
#include "dcmtk/ofstd/oflist.h"
/*-----------------------*
* forward declaration *
*-----------------------*/
class DSRTreeNode;
/*-------------------*
* type definition *
*-------------------*/
// this typedef is needed to avoid a warning on Sun CC 2.0.1
typedef DSRTreeNode *DSRTreeNodePointer;
/*---------------------*
* class declaration *
*---------------------*/
/** Class implementing a tree node cursor
*/
class DSRTreeNodeCursor
{
public:
/** default constructor
*/
DSRTreeNodeCursor();
/** copy constructor
** @param cursor object to be copied
*/
DSRTreeNodeCursor(const DSRTreeNodeCursor &cursor);
/** constructor
** @param node pointer tree node used to initialize the cursor (set to this node)
*/
DSRTreeNodeCursor(DSRTreeNode *node);
/** destructor
*/
virtual ~DSRTreeNodeCursor();
/** assignment operator
** @param cursor object to be copied
** @return reference to modified cursor (this object)
*/
DSRTreeNodeCursor &operator=(const DSRTreeNodeCursor &cursor);
/** assignment operator
** @param node node to which the cursor should be set
** @return reference to modified cursor (this object)
*/
DSRTreeNodeCursor &operator=(DSRTreeNode *node);
/** clear all member variables
*/
virtual void clear();
/** check whether cursor currently points to a valid node
** @return OFTrue if valid, OFFalse otherwise
*/
virtual OFBool isValid() const;
/** get pointer to current node
** @return pointer to current node (might be NULL)
*/
inline DSRTreeNode *getNode() const
{
return NodeCursor;
}
/** get pointer to parent node.
* Used to have a lookup to the parent node without changing the cursor.
** @return pointer to parent node (if any), NULL otherwise
*/
const DSRTreeNode *getParentNode();
/** get pointer to next node.
* Used to have a lookup to the next node without changing the cursor.
** @return pointer to next node (if any), NULL otherwise
*/
const DSRTreeNode *getNextNode() const;
/** goto previous node on the same level
** @return ID of the previous node if successful, 0 otherwise
*/
size_t gotoPrevious();
/** goto next node on the same level
** @return ID of the next node if successful, 0 otherwise
*/
size_t gotoNext();
/** goto parent node (one level up)
** @return ID of the parent node if successful, 0 otherwise
*/
size_t goUp();
/** goto first child node (one level down)
** @return ID of the first child node if successful, 0 otherwise
*/
size_t goDown();
/** iterate over all nodes. Starts from current position!
** @param searchIntoSub flag indicating whether to search into sub-trees
("deep search") or on the current level only
** @return ID of the next node if successful, 0 otherwise
*/
size_t iterate(const OFBool searchIntoSub = OFTrue);
/** set cursor to specified node. Starts from current position!
** @param searchID ID of the node to set the cursor to
** @return ID of the new current node if successful, 0 otherwise
*/
size_t gotoNode(const size_t searchID);
/** set cursor to specified node. Starts from current position!
** @param position position string of the node to set the cursor to.
* (the format is e.g. "1.2.3" for the third child of the
* second child of the first node - see getPosition()).
* @param separator character used to separate the figures (default: '.')
** @return ID of the new current node if successful, 0 otherwise
*/
size_t gotoNode(const OFString &position,
const char separator = '.');
/** get current node ID.
* The node ID uniquely identifies a content item in the document tree. Most of
* the navigation methods above do return this ID too.
** @return ID of the current node if valid, 0 otherwise
*/
size_t getNodeID() const;
/** get current level.
* The level starts with 1 for the root node, then 2 for its child nodes, etc.
** @return number of the current level if valid, 0 otherwise
*/
size_t getLevel() const;
/** get position string of the current node.
* Specifies the position of each node by means of a dot separated string of
* position counters. The first figure of this string specifies the position
* within the first level (e.g. "1"), the second one the position in the second
* level (e.g. "2"), the third one the position in the third level (e.g. "3"),
* etc. A position string of "1.2.3" would, therefore, point to the third child
* of the second child of the first node.
** @param position variable where the position string should be stored
* @param separator character used to separate the figures (default: '.')
** @return reference to the resulting position string (empty if invalid)
*/
const OFString &getPosition(OFString &position,
const char separator = '.') const;
protected:
/** clear the internal node cursor stack
*/
void clearNodeCursorStack();
/** set cursor to specified node.
* Clears the internal position list/stack and sets the position counter to 1.
** @param node node to which the cursor should be set
** @return ID of the new current node if successful, 0 otherwise
*/
size_t setCursor(DSRTreeNode *node);
/// pointer current node
DSRTreeNode *NodeCursor;
/// stack of node pointers. Used to store the cursor position of upper levels.
OFStack< DSRTreeNodePointer > NodeCursorStack;
/// current position within the current level
size_t Position;
/// list of position counters in upper levels
OFList<size_t> PositionList;
};
#endif
/*
* CVS/RCS Log:
* $Log: dsrtncsr.h,v $
* Revision 1.13 2010-10-14 13:16:33 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.12 2005-12-08 16:05:28 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.11 2005/07/27 16:36:14 joergr
* Added flag to iterate() method indicating whether to perform a "deep search".
*
* Revision 1.10 2003/08/07 12:55:46 joergr
* Updated documentation to get rid of doxygen warnings.
*
* Revision 1.9 2001/12/18 09:55:06 meichel
* Introduced typedef to avoid warning on Sun CC 2.0.1
*
* Revision 1.8 2001/03/28 09:06:56 joergr
* Fixed bug in cycle/loop detection "algorithm".
*
* Revision 1.7 2000/11/09 20:32:08 joergr
* Added support for non-ASCII characters in HTML 3.2 (use numeric value).
*
* Revision 1.6 2000/11/07 18:14:31 joergr
* Enhanced support for by-reference relationships.
*
* Revision 1.5 2000/10/26 14:20:49 joergr
* Generalized routine to get and search for position strings ("1.2.3").
*
* Revision 1.4 2000/10/18 17:09:06 joergr
* Made some functions inline.
*
* Revision 1.3 2000/10/16 16:31:08 joergr
* Updated comments.
*
* Revision 1.2 2000/10/16 11:57:00 joergr
* Added doc++ comments.
*
* Revision 1.1 2000/10/13 07:49:34 joergr
* Added new module 'dcmsr' providing access to DICOM structured reporting
* documents (supplement 23). Doc++ documentation not yet completed.
*
*
*/
|