/usr/include/dcmtk/dcmdata/dcstack.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 | /*
*
* 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: dcmdata
*
* Author: Gerd Ehlers
*
* Purpose: stack class
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:42 $
* CVS/RCS Revision: $Revision: 1.14 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DCSTACK_H
#define DCSTACK_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/oftypes.h"
class DcmObject; // forward declaration
/** helper class used by DcmStack. Maintains a single stack entry.
*/
class DcmStackNode
{
public:
/** constructor.
* @param obj object pointer for this stack entry
*/
DcmStackNode(DcmObject *obj);
/// destructor, non virtual.
~DcmStackNode();
/** return pointer maintained by this entry
* @return object pointer
*/
DcmObject *value() const;
private:
/// private undefined copy constructor
DcmStackNode(const DcmStackNode &);
/// private undefined copy assignment operator
DcmStackNode &operator=(const DcmStackNode &);
/// pointer to next stack entry, NULL if last one
DcmStackNode *link;
/// pointer to object referenced by this stack entry
DcmObject *objNodeValue;
/// class DcmStack directly manipulates the pointer chain
friend class DcmStack;
};
/** this class manages a stack of pointers to DcmObject instances.
* The objects pointed to are never touched, e.g. deleted.
*/
class DcmStack
{
public:
/// default constructor, creates empty stack
DcmStack();
/** copy constructor. Only pointers to objects are copied,
* the DcmObject instances are not duplicated.
* @param arg stack to copy from
*/
DcmStack(const DcmStack& arg);
/// destructor, not virtual. Do not derive from this class.
~DcmStack();
/** copy assignment operator. Only pointers to objects are copied,
* the DcmObject instances are not duplicated.
* @param arg object to assign from
* @return reference to this object
*/
DcmStack& operator=(const DcmStack &arg);
/** comparison operator, needed for MSVC5.
* @param arg stack to compare to
* @return true if stacks are equal, false otherwise
*/
OFBool operator==(const DcmStack& arg) const;
/** dummy comparison operator, needed for MSVC5.
* @param arg stack to compare to
* @return true if the cardinality of this stack is smaller than the
* cardinality of arg, or if the cardinality is equal and pointer
* comparison, from the top to the bottom of the stack results
* in a smaller pointer for this stack.
*/
OFBool operator<(const DcmStack& arg) const;
/** push new pointer do DcmObject instance on stack
* @param obj object pointer to push on stack
* @return pointer passed as obj
*/
DcmObject* push( DcmObject *obj );
/** removes uppermost entry from stack and returns it.
* @return uppermost stack entry
*/
DcmObject* pop();
/** returns uppermost entry of stack without removing it.
* @returns uppermost stack entry
*/
DcmObject* top() const;
/** returns n-th element from stack without removing it.
* @return n-th element from stack
*/
DcmObject* elem(const unsigned long number) const;
/** checks if the stack is empty
* @return true if stack is empty, false otherwise
*/
OFBool empty() const;
/** returns cardinality (number of entries) of the stack
* @return cardinality of stack
*/
unsigned long card() const;
/** returns the stack to default-constructed state, i.e. empty state.
*/
void clear();
private:
/// pointer to the upmost stack entry, NULL if empty
DcmStackNode *topNode_;
/// current cardinality of the stack
unsigned long cardinality_;
};
#endif // DCSTACK_H
/*
* CVS/RCS Log:
* $Log: dcstack.h,v $
* Revision 1.14 2010-10-14 13:15:42 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.13 2010-03-01 09:08:44 uli
* Removed some unnecessary include directives in the headers.
*
* Revision 1.12 2005-12-08 16:28:42 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.11 2004/04/14 11:50:21 joergr
* Added const qualifier to parameter to keep Sun CC 2.0.1 quiet.
*
* Revision 1.10 2003/06/02 16:52:20 meichel
* Cleaned up implementation of DcmStack, added doc++ comments
*
* Revision 1.9 2001/06/01 15:48:44 meichel
* Updated copyright header
*
* Revision 1.8 2000/03/08 16:26:18 meichel
* Updated copyright header.
*
* Revision 1.7 1999/03/31 09:24:47 meichel
* Updated copyright header in module dcmdata
*
*
*/
|