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