00001 /* 00002 * 00003 * Copyright (C) 1994-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: dcmdata 00015 * 00016 * Author: Marco Eichelberg 00017 * 00018 * Purpose: representation parameter for RLE 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:15:42 $ 00022 * CVS/RCS Revision: $Revision: 1.4 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 #ifndef DCRLERP_H 00030 #define DCRLERP_H 00031 00032 #include "dcmtk/config/osconfig.h" 00033 #include "dcmtk/dcmdata/dcpixel.h" /* for class DcmRepresentationParameter */ 00034 00039 class DcmRLERepresentationParameter: public DcmRepresentationParameter 00040 { 00041 public: 00042 00044 DcmRLERepresentationParameter(); 00045 00047 DcmRLERepresentationParameter(const DcmRLERepresentationParameter& arg); 00048 00050 virtual ~DcmRLERepresentationParameter(); 00051 00056 virtual DcmRepresentationParameter *clone() const; 00057 00061 virtual const char *className() const; 00062 00068 virtual OFBool operator==(const DcmRepresentationParameter &arg) const; 00069 00070 }; 00071 00072 #endif 00073 00074 /* 00075 * CVS/RCS Log 00076 * $Log: dcrlerp.h,v $ 00077 * Revision 1.4 2010-10-14 13:15:42 joergr 00078 * Updated copyright header. Added reference to COPYRIGHT file. 00079 * 00080 * Revision 1.3 2009-11-04 09:58:07 uli 00081 * Switched to logging mechanism provided by the "new" oflog module 00082 * 00083 * Revision 1.2 2005-12-08 16:28:40 meichel 00084 * Changed include path schema for all DCMTK header files 00085 * 00086 * Revision 1.1 2002/06/06 14:52:38 meichel 00087 * Initial release of the new RLE codec classes 00088 * and the dcmcrle/dcmdrle tools in module dcmdata 00089 * 00090 * 00091 */