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: dcmimgle 00019 * 00020 * Author: Joerg Riesmeier 00021 * 00022 * Purpose: DicomOverlayData (Header) 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:48:00 $ 00026 * CVS/RCS Revision: $Revision: 1.5 $ 00027 * Status: $State: Exp $ 00028 * 00029 * CVS/RCS Log at end of file 00030 * 00031 */ 00032 00033 00034 #ifndef DIOVDAT_H 00035 #define DIOVDAT_H 00036 00037 #include "dcmtk/config/osconfig.h" 00038 #include "dcmtk/dcmdata/dctypes.h" 00039 00040 #include "dcmtk/dcmimgle/diobjcou.h" 00041 00042 00043 /*------------------------* 00044 * forward declarations * 00045 *------------------------*/ 00046 00047 class DiOverlay; 00048 class DiOverlayPlane; 00049 00050 00051 /*-------------------------------* 00052 * declaration of helper class * 00053 *-------------------------------*/ 00054 00057 class DiOverlayData 00058 : public DiObjectCounter 00059 { 00060 00061 friend class DiOverlay; 00062 00063 public: 00064 00070 DiOverlayData(unsigned int entries, 00071 unsigned int count = 0); 00072 00075 virtual ~DiOverlayData(); 00076 00077 00078 private: 00079 00081 unsigned int Count; 00083 unsigned int ArrayEntries; 00084 00086 DiOverlayPlane **Planes; 00088 Uint16 *DataBuffer; 00089 00090 // --- declarations to avoid compiler warnings 00091 00092 DiOverlayData(const DiOverlayData &); 00093 DiOverlayData &operator=(const DiOverlayData &); 00094 }; 00095 00096 00097 #endif 00098 00099 00100 /* 00101 * 00102 * CVS/RCS Log: 00103 * $Log: diovdat.h,v $ 00104 * Revision 1.5 2005/12/08 16:48:00 meichel 00105 * Changed include path schema for all DCMTK header files 00106 * 00107 * Revision 1.4 2003/12/09 10:05:22 joergr 00108 * Removed leading underscore characters from preprocessor symbols (reserved 00109 * symbols). Updated copyright header. 00110 * 00111 * Revision 1.3 2001/06/01 15:49:48 meichel 00112 * Updated copyright header 00113 * 00114 * Revision 1.2 2000/03/08 16:24:22 meichel 00115 * Updated copyright header. 00116 * 00117 * Revision 1.1 1999/09/17 12:46:22 joergr 00118 * Splitted file diovlay.h into two files (one for each class). 00119 * 00120 * 00121 * 00122 */