00001 /* 00002 * 00003 * Copyright (C) 1998-2005, OFFIS 00004 * 00005 * This software and supporting documentation were developed by 00006 * 00007 * Kuratorium OFFIS e.V. 00008 * Healthcare Information and Communication Systems 00009 * Escherweg 2 00010 * D-26121 Oldenburg, Germany 00011 * 00012 * THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND OFFIS MAKES NO WARRANTY 00013 * REGARDING THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR 00014 * FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR 00015 * ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND 00016 * PERFORMANCE OF THE SOFTWARE IS WITH THE USER. 00017 * 00018 * Module: dcmpstat 00019 * 00020 * Author: Marco Eichelberg 00021 * 00022 * Purpose: 00023 * classes: DVPSOverlayCurveActivationLayer 00024 * 00025 * Last Update: $Author: meichel $ 00026 * Update Date: $Date: 2005/12/08 16:03:34 $ 00027 * CVS/RCS Revision: $Revision: 1.6 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 #ifndef __DVPSAL_H__ 00035 #define __DVPSAL_H__ 00036 00037 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00038 #include "dcmtk/dcmdata/dctk.h" 00039 00048 class DVPSOverlayCurveActivationLayer 00049 { 00050 public: 00052 DVPSOverlayCurveActivationLayer(); 00053 00055 DVPSOverlayCurveActivationLayer(const DVPSOverlayCurveActivationLayer& copy); 00056 00061 DVPSOverlayCurveActivationLayer *clone() { return new DVPSOverlayCurveActivationLayer(*this); } 00062 00064 virtual ~DVPSOverlayCurveActivationLayer(); 00065 00075 OFCondition read(DcmItem &dset, Uint16 ovGroup); 00076 00083 OFCondition write(DcmItem &dset); 00084 00088 void setActivationLayer(const char *aLayer); 00089 00093 void setRepeatingGroup(Uint16 rGroup); 00094 00098 const char *getActivationLayer(); 00099 00103 Uint16 getRepeatingGroup(); 00104 00109 OFBool isRepeatingGroup(Uint16 rGroup); 00110 00116 void setLog(OFConsole *stream, OFBool verbMode, OFBool dbgMode); 00117 00118 private: 00119 00121 DVPSOverlayCurveActivationLayer& operator=(const DVPSOverlayCurveActivationLayer&); 00122 00124 Uint16 repeatingGroup; 00126 DcmCodeString activationLayer; 00127 00130 OFConsole *logstream; 00131 00134 OFBool verboseMode; 00135 00138 OFBool debugMode; 00139 }; 00140 00141 #endif 00142 00143 /* 00144 * $Log: dvpsal.h,v $ 00145 * Revision 1.6 2005/12/08 16:03:34 meichel 00146 * Changed include path schema for all DCMTK header files 00147 * 00148 * Revision 1.5 2001/09/26 15:36:08 meichel 00149 * Adapted dcmpstat to class OFCondition 00150 * 00151 * Revision 1.4 2001/06/01 15:50:12 meichel 00152 * Updated copyright header 00153 * 00154 * Revision 1.3 2000/06/02 16:00:43 meichel 00155 * Adapted all dcmpstat classes to use OFConsole for log and error output 00156 * 00157 * Revision 1.2 2000/03/08 16:28:48 meichel 00158 * Updated copyright header. 00159 * 00160 * Revision 1.1 1998/11/27 14:50:24 meichel 00161 * Initial Release. 00162 * 00163 * 00164 */ 00165