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: dcmimage 00019 * 00020 * Author: Joerg Riesmeier 00021 * 00022 * Purpose: DicomRegister (Header) 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:01:57 $ 00026 * CVS/RCS Revision: $Revision: 1.10 $ 00027 * Status: $State: Exp $ 00028 * 00029 * CVS/RCS Log at end of file 00030 * 00031 */ 00032 00033 00034 #ifndef DIREGIST_H 00035 #define DIREGIST_H 00036 00037 #include "dcmtk/config/osconfig.h" 00038 00039 #include "dcmtk/dcmimgle/diregbas.h" 00040 00041 00042 /*---------------------* 00043 * class declaration * 00044 *---------------------*/ 00045 00048 class DiRegister 00049 : public DiRegisterBase 00050 { 00051 00052 public: 00053 00056 DiRegister(); 00057 00060 virtual ~DiRegister(); 00061 00070 virtual DiImage *createImage(const DiDocument *docu, 00071 const EI_Status status, 00072 const EP_Interpretation photo); 00073 00083 virtual DiMonoPixel *createMonoImageData(const DiColorImage *image, 00084 const double red, 00085 const double green, 00086 const double blue); 00087 }; 00088 00089 00090 /*------------------* 00091 * initialization * 00092 *------------------*/ 00093 00094 static DiRegister Init_dcmimage_Module; // registration pointer is initialized in class constructor 00095 00096 00097 #endif 00098 00099 00100 /* 00101 * 00102 * CVS/RCS Log: 00103 * $Log: diregist.h,v $ 00104 * Revision 1.10 2005/12/08 16:01:57 meichel 00105 * Changed include path schema for all DCMTK header files 00106 * 00107 * Revision 1.9 2003/12/23 12:22:02 joergr 00108 * Added missing API documentation. 00109 * 00110 * Revision 1.8 2003/12/17 18:18:08 joergr 00111 * Removed leading underscore characters from preprocessor symbols (reserved 00112 * symbols). 00113 * 00114 * Revision 1.7 2001/06/20 15:11:39 joergr 00115 * Removed old dcmimage license information. 00116 * 00117 * Revision 1.6 2001/06/01 15:49:31 meichel 00118 * Updated copyright header 00119 * 00120 * Revision 1.5 2000/03/10 13:15:08 meichel 00121 * Release 1.1.1 (Release date - 2000-03-10) 00122 * 00123 * Revision 1.4 2000/03/08 16:21:53 meichel 00124 * Updated copyright header. 00125 * 00126 * Revision 1.3 1999/05/31 13:01:03 joergr 00127 * Changed Release version and date. 00128 * 00129 * Revision 1.2 1999/05/10 09:32:36 joergr 00130 * Moved dcm2pnm version definition from module dcmimgle to dcmimage. 00131 * 00132 * Revision 1.1 1998/11/27 13:09:54 joergr 00133 * Added registration class to allow easy combination of both modules. 00134 * Added copyright message to all source files. 00135 * 00136 * 00137 */ 00138