00001 /* 00002 * 00003 * Copyright (C) 1996-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: dcmimage 00019 * 00020 * Author: Joerg Riesmeier 00021 * 00022 * Purpose: DicomCMYKImage (Header) 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:01:26 $ 00026 * CVS/RCS Revision: $Revision: 1.9 $ 00027 * Status: $State: Exp $ 00028 * 00029 * CVS/RCS Log at end of file 00030 * 00031 */ 00032 00033 00034 #ifndef DICMYIMG_H 00035 #define DICMYIMG_H 00036 00037 #include "dcmtk/config/osconfig.h" 00038 00039 #include "dcmtk/dcmimage/dicoimg.h" 00040 00041 00042 /*---------------------* 00043 * class declaration * 00044 *---------------------*/ 00045 00048 class DiCMYKImage 00049 : public DiColorImage 00050 { 00051 00052 public: 00053 00059 DiCMYKImage(const DiDocument *docu, 00060 const EI_Status status); 00061 00064 virtual ~DiCMYKImage(); 00065 }; 00066 00067 00068 #endif 00069 00070 00071 /* 00072 * 00073 * CVS/RCS Log: 00074 * $Log: dicmyimg.h,v $ 00075 * Revision 1.9 2005/12/08 16:01:26 meichel 00076 * Changed include path schema for all DCMTK header files 00077 * 00078 * Revision 1.8 2003/12/17 18:10:25 joergr 00079 * Removed leading underscore characters from preprocessor symbols (reserved 00080 * symbols). 00081 * 00082 * Revision 1.7 2001/11/09 16:39:57 joergr 00083 * Updated/Enhanced comments. 00084 * 00085 * Revision 1.6 2001/06/01 15:49:27 meichel 00086 * Updated copyright header 00087 * 00088 * Revision 1.5 2000/03/08 16:21:49 meichel 00089 * Updated copyright header. 00090 * 00091 * Revision 1.4 1999/04/28 12:51:55 joergr 00092 * Corrected some typos, comments and formatting. 00093 * 00094 * Revision 1.3 1998/11/27 13:40:40 joergr 00095 * Added copyright message. 00096 * 00097 * Revision 1.2 1998/05/11 14:53:09 joergr 00098 * Added CVS/RCS header to each file. 00099 * 00100 * 00101 */