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: DVPSOverlayCurveActivationLayer 00020 * 00021 * Last Update: $Author: joergr $ 00022 * Update Date: $Date: 2010-10-14 13:16:36 $ 00023 * CVS/RCS Revision: $Revision: 1.10 $ 00024 * Status: $State: Exp $ 00025 * 00026 * CVS/RCS Log at end of file 00027 * 00028 */ 00029 00030 #ifndef DVPSAL_H 00031 #define DVPSAL_H 00032 00033 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00034 #include "dcmtk/dcmdata/dcitem.h" 00035 #include "dcmtk/dcmdata/dcvrcs.h" 00036 00045 class DVPSOverlayCurveActivationLayer 00046 { 00047 public: 00049 DVPSOverlayCurveActivationLayer(); 00050 00052 DVPSOverlayCurveActivationLayer(const DVPSOverlayCurveActivationLayer& copy); 00053 00058 DVPSOverlayCurveActivationLayer *clone() { return new DVPSOverlayCurveActivationLayer(*this); } 00059 00061 virtual ~DVPSOverlayCurveActivationLayer(); 00062 00072 OFCondition read(DcmItem &dset, Uint16 ovGroup); 00073 00080 OFCondition write(DcmItem &dset); 00081 00085 void setActivationLayer(const char *aLayer); 00086 00090 void setRepeatingGroup(Uint16 rGroup); 00091 00095 const char *getActivationLayer(); 00096 00100 Uint16 getRepeatingGroup(); 00101 00106 OFBool isRepeatingGroup(Uint16 rGroup); 00107 00108 private: 00109 00111 DVPSOverlayCurveActivationLayer& operator=(const DVPSOverlayCurveActivationLayer&); 00112 00114 Uint16 repeatingGroup; 00116 DcmCodeString activationLayer; 00117 00118 }; 00119 00120 #endif 00121 00122 /* 00123 * $Log: dvpsal.h,v $ 00124 * Revision 1.10 2010-10-14 13:16:36 joergr 00125 * Updated copyright header. Added reference to COPYRIGHT file. 00126 * 00127 * Revision 1.9 2010-10-07 14:31:35 joergr 00128 * Removed leading underscore characters from preprocessor symbols (reserved). 00129 * 00130 * Revision 1.8 2009-11-24 14:12:57 uli 00131 * Switched to logging mechanism provided by the "new" oflog module. 00132 * 00133 * Revision 1.7 2009-09-30 10:42:38 uli 00134 * Make dcmpstat's include headers self-sufficient by including all 00135 * needed headers directly and stop using dctk.h 00136 * 00137 * Revision 1.6 2005-12-08 16:03:34 meichel 00138 * Changed include path schema for all DCMTK header files 00139 * 00140 * Revision 1.5 2001/09/26 15:36:08 meichel 00141 * Adapted dcmpstat to class OFCondition 00142 * 00143 * Revision 1.4 2001/06/01 15:50:12 meichel 00144 * Updated copyright header 00145 * 00146 * Revision 1.3 2000/06/02 16:00:43 meichel 00147 * Adapted all dcmpstat classes to use OFConsole for log and error output 00148 * 00149 * Revision 1.2 2000/03/08 16:28:48 meichel 00150 * Updated copyright header. 00151 * 00152 * Revision 1.1 1998/11/27 14:50:24 meichel 00153 * Initial Release. 00154 * 00155 * 00156 */