00001 /* 00002 * 00003 * Copyright (C) 2000-2003, 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: DSRStringValue 00024 * 00025 * Last Update: $Author: joergr $ 00026 * Update Date: $Date: 2003/08/07 18:01:42 $ 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 DSRSTRVL_H 00036 #define DSRSTRVL_H 00037 00038 #include "osconfig.h" /* make sure OS specific configuration is included first */ 00039 00040 #include "dsrtypes.h" 00041 00042 #include "ofstring.h" 00043 00044 00045 /*---------------------* 00046 * class declaration * 00047 *---------------------*/ 00048 00051 class DSRStringValue 00052 { 00053 00054 public: 00055 00058 DSRStringValue(); 00059 00064 DSRStringValue(const OFString &stringValue); 00065 00069 DSRStringValue(const DSRStringValue &stringValue); 00070 00073 virtual ~DSRStringValue(); 00074 00079 DSRStringValue &operator=(const DSRStringValue &stringValue); 00080 00084 virtual void clear(); 00085 00090 virtual OFBool isValid() const; 00091 00102 void print(ostream &stream, 00103 const size_t maxLength = 0) const; 00104 00113 OFCondition read(DcmItem &dataset, 00114 const DcmTagKey &tagKey, 00115 OFConsole *logStream); 00116 00123 OFCondition write(DcmItem &dataset, 00124 const DcmTagKey &tagKey, 00125 OFConsole *logStream) const; 00126 00133 OFCondition readXML(const DSRXMLDocument &doc, 00134 DSRXMLCursor cursor, 00135 const OFBool encoding = OFFalse); 00136 00143 OFCondition renderHTML(ostream &docStream, 00144 const size_t flags, 00145 OFConsole *logStream) const; 00146 00150 inline const OFString &getValue() const 00151 { 00152 return Value; 00153 } 00154 00162 OFCondition setValue(const OFString &stringValue); 00163 00164 00165 protected: 00166 00174 virtual OFBool checkValue(const OFString &stringValue) const; 00175 00176 00177 private: 00178 00180 OFString Value; 00181 }; 00182 00183 00184 #endif 00185 00186 00187 /* 00188 * CVS/RCS Log: 00189 * $Log: dsrstrvl.h,v $ 00190 * Revision 1.9 2003/08/07 18:01:42 joergr 00191 * Removed libxml dependency from header files. 00192 * 00193 * Revision 1.8 2003/08/07 12:50:44 joergr 00194 * Added readXML functionality. 00195 * 00196 * Revision 1.7 2001/09/26 13:04:11 meichel 00197 * Adapted dcmsr to class OFCondition 00198 * 00199 * Revision 1.6 2001/06/01 15:51:03 meichel 00200 * Updated copyright header 00201 * 00202 * Revision 1.5 2000/11/06 11:18:48 joergr 00203 * Moved some protected methods to public part. 00204 * 00205 * Revision 1.4 2000/11/01 16:23:25 joergr 00206 * Added support for conversion to XML. 00207 * 00208 * Revision 1.3 2000/10/23 15:12:55 joergr 00209 * Added/updated doc++ comments. 00210 * 00211 * Revision 1.2 2000/10/18 17:08:11 joergr 00212 * Added read and write methods. 00213 * 00214 * Revision 1.1 2000/10/13 07:49:32 joergr 00215 * Added new module 'dcmsr' providing access to DICOM structured reporting 00216 * documents (supplement 23). Doc++ documentation not yet completed. 00217 * 00218 * 00219 */