00001 /* 00002 * 00003 * Copyright (C) 2000-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: dcmsr 00019 * 00020 * Author: Joerg Riesmeier 00021 * 00022 * Purpose: 00023 * classes: DSRImageFrameList 00024 * 00025 * Last Update: $Author: meichel $ 00026 * Update Date: $Date: 2005/12/08 16:05:04 $ 00027 * CVS/RCS Revision: $Revision: 1.9 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 00035 #ifndef DSRIMGFR_H 00036 #define DSRIMGFR_H 00037 00038 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00039 00040 #include "dcmtk/dcmsr/dsrtypes.h" 00041 #include "dcmtk/dcmsr/dsrtlist.h" 00042 00043 00044 /*---------------------* 00045 * class declaration * 00046 *---------------------*/ 00047 00050 class DSRImageFrameList 00051 : public DSRListOfItems<Sint32> 00052 { 00053 00054 public: 00055 00058 DSRImageFrameList(); 00059 00063 DSRImageFrameList(const DSRImageFrameList &lst); 00064 00067 virtual ~DSRImageFrameList(); 00068 00073 DSRImageFrameList &operator=(const DSRImageFrameList &lst); 00074 00082 OFCondition print(ostream &stream, 00083 const size_t flags = 0, 00084 const char separator = ',') const; 00085 00091 OFCondition read(DcmItem &dataset, 00092 OFConsole *logStream); 00093 00099 OFCondition write(DcmItem &dataset, 00100 OFConsole *logStream) const; 00101 00108 OFCondition putString(const char *stringValue); 00109 }; 00110 00111 00112 #endif 00113 00114 00115 /* 00116 * CVS/RCS Log: 00117 * $Log: dsrimgfr.h,v $ 00118 * Revision 1.9 2005/12/08 16:05:04 meichel 00119 * Changed include path schema for all DCMTK header files 00120 * 00121 * Revision 1.8 2003/08/07 12:36:58 joergr 00122 * Added new putString() method. 00123 * 00124 * Revision 1.7 2003/06/03 10:16:44 meichel 00125 * Renamed local variables to avoid name clashes with STL 00126 * 00127 * Revision 1.6 2001/09/26 13:04:08 meichel 00128 * Adapted dcmsr to class OFCondition 00129 * 00130 * Revision 1.5 2001/06/01 15:51:01 meichel 00131 * Updated copyright header 00132 * 00133 * Revision 1.4 2000/11/06 11:16:06 joergr 00134 * Added parameter to print() method specifying the item separator character. 00135 * 00136 * Revision 1.3 2000/11/01 16:19:20 joergr 00137 * Updated comments/formatting. 00138 * 00139 * Revision 1.2 2000/10/18 17:03:28 joergr 00140 * Added doc++ comments. 00141 * 00142 * Revision 1.1 2000/10/13 07:49:27 joergr 00143 * Added new module 'dcmsr' providing access to DICOM structured reporting 00144 * documents (supplement 23). Doc++ documentation not yet completed. 00145 * 00146 * 00147 */