00001 /* 00002 * 00003 * Copyright (C) 1994-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: dcmdata 00019 * 00020 * Author: Marco Eichelberg 00021 * 00022 * Purpose: representation parameter for RLE 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:28:40 $ 00026 * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcrlerp.h,v $ 00027 * CVS/RCS Revision: $Revision: 1.2 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 #ifndef DCRLERP_H 00035 #define DCRLERP_H 00036 00037 #include "dcmtk/config/osconfig.h" 00038 #include "dcmtk/dcmdata/dcpixel.h" /* for class DcmRepresentationParameter */ 00039 00044 class DcmRLERepresentationParameter: public DcmRepresentationParameter 00045 { 00046 public: 00047 00049 DcmRLERepresentationParameter(); 00050 00052 DcmRLERepresentationParameter(const DcmRLERepresentationParameter& arg); 00053 00055 virtual ~DcmRLERepresentationParameter(); 00056 00061 virtual DcmRepresentationParameter *clone() const; 00062 00066 virtual const char *className() const; 00067 00073 virtual OFBool operator==(const DcmRepresentationParameter &arg) const; 00074 00075 }; 00076 00077 #endif 00078 00079 /* 00080 * CVS/RCS Log 00081 * $Log: dcrlerp.h,v $ 00082 * Revision 1.2 2005/12/08 16:28:40 meichel 00083 * Changed include path schema for all DCMTK header files 00084 * 00085 * Revision 1.1 2002/06/06 14:52:38 meichel 00086 * Initial release of the new RLE codec classes 00087 * and the dcmcrle/dcmdrle tools in module dcmdata 00088 * 00089 * 00090 */