00001 /* 00002 * 00003 * Copyright (C) 1998-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmpstat 00015 * 00016 * Author: Marco Eichelberg 00017 * 00018 * Purpose: 00019 * classes: DVPSVOILUT_PList 00020 * 00021 * Last Update: $Author: joergr $ 00022 * Update Date: $Date: 2010-10-14 13:16:37 $ 00023 * CVS/RCS Revision: $Revision: 1.11 $ 00024 * Status: $State: Exp $ 00025 * 00026 * CVS/RCS Log at end of file 00027 * 00028 */ 00029 00030 #ifndef DVPSVLL_H 00031 #define DVPSVLL_H 00032 00033 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00034 #include "dcmtk/dcmdata/dcitem.h" 00035 00036 class DVPSVOILUT; 00037 00038 00044 class DVPSVOILUT_PList 00045 { 00046 public: 00048 DVPSVOILUT_PList(); 00049 00051 DVPSVOILUT_PList(const DVPSVOILUT_PList& copy); 00052 00057 DVPSVOILUT_PList *clone() { return new DVPSVOILUT_PList(*this); } 00058 00060 virtual ~DVPSVOILUT_PList(); 00061 00071 OFCondition read(DcmItem &dset); 00072 00077 void clear(); 00078 00082 size_t size() const { return list_.size(); } 00083 00089 DVPSVOILUT *getVOILUT(size_t idx); 00090 00091 private: 00092 00094 DVPSVOILUT_PList& operator=(const DVPSVOILUT_PList&); 00095 00098 OFList<DVPSVOILUT *> list_; 00099 }; 00100 00101 #endif 00102 00103 /* 00104 * $Log: dvpsvll.h,v $ 00105 * Revision 1.11 2010-10-14 13:16:37 joergr 00106 * Updated copyright header. Added reference to COPYRIGHT file. 00107 * 00108 * Revision 1.10 2010-10-07 14:31:36 joergr 00109 * Removed leading underscore characters from preprocessor symbols (reserved). 00110 * 00111 * Revision 1.9 2009-11-24 14:12:58 uli 00112 * Switched to logging mechanism provided by the "new" oflog module. 00113 * 00114 * Revision 1.8 2009-09-30 10:42:38 uli 00115 * Make dcmpstat's include headers self-sufficient by including all 00116 * needed headers directly and stop using dctk.h 00117 * 00118 * Revision 1.7 2005-12-08 16:04:12 meichel 00119 * Changed include path schema for all DCMTK header files 00120 * 00121 * Revision 1.6 2003/06/04 10:18:06 meichel 00122 * Replaced private inheritance from template with aggregation 00123 * 00124 * Revision 1.5 2001/09/26 15:36:18 meichel 00125 * Adapted dcmpstat to class OFCondition 00126 * 00127 * Revision 1.4 2001/06/01 15:50:25 meichel 00128 * Updated copyright header 00129 * 00130 * Revision 1.3 2000/06/02 16:00:54 meichel 00131 * Adapted all dcmpstat classes to use OFConsole for log and error output 00132 * 00133 * Revision 1.2 2000/03/08 16:28:59 meichel 00134 * Updated copyright header. 00135 * 00136 * Revision 1.1 1998/12/22 17:57:09 meichel 00137 * Implemented Presentation State interface for overlays, 00138 * VOI LUTs, VOI windows, curves. Added test program that 00139 * allows to add curve data to DICOM images. 00140 * 00141 * 00142 */