00001 /* 00002 * 00003 * Copyright (C) 1994-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: dcmdata 00019 * 00020 * Author: Gerd Ehlers, Andreas Barth 00021 * 00022 * Purpose: Interface of class DcmApplicationEntity 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:28:51 $ 00026 * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcvrae.h,v $ 00027 * CVS/RCS Revision: $Revision: 1.14 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 00035 #ifndef DCVRAE_H 00036 #define DCVRAE_H 00037 00038 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00039 00040 #include "dcmtk/dcmdata/dcbytstr.h" 00041 00042 00045 class DcmApplicationEntity 00046 : public DcmByteString 00047 { 00048 00049 public: 00050 00056 DcmApplicationEntity(const DcmTag &tag, 00057 const Uint32 len = 0); 00058 00062 DcmApplicationEntity(const DcmApplicationEntity &old); 00063 00066 virtual ~DcmApplicationEntity(); 00067 00072 DcmApplicationEntity &operator=(const DcmApplicationEntity &obj); 00073 00077 virtual DcmObject *clone() const 00078 { 00079 return new DcmApplicationEntity(*this); 00080 } 00081 00085 virtual DcmEVR ident() const; 00086 00093 virtual OFCondition getOFString(OFString &stringVal, 00094 const unsigned long pos, 00095 OFBool normalize = OFTrue); 00096 }; 00097 00098 00099 #endif // DCVRAE_H 00100 00101 00102 /* 00103 ** CVS/RCS Log: 00104 ** $Log: dcvrae.h,v $ 00105 ** Revision 1.14 2005/12/08 16:28:51 meichel 00106 ** Changed include path schema for all DCMTK header files 00107 ** 00108 ** Revision 1.13 2004/07/01 12:28:25 meichel 00109 ** Introduced virtual clone method for DcmObject and derived classes. 00110 ** 00111 ** Revision 1.12 2002/12/06 12:49:13 joergr 00112 ** Enhanced "print()" function by re-working the implementation and replacing 00113 ** the boolean "showFullData" parameter by a more general integer flag. 00114 ** Added doc++ documentation. 00115 ** Made source code formatting more consistent with other modules/files. 00116 ** 00117 ** Revision 1.11 2002/04/25 09:50:04 joergr 00118 ** Removed getOFStringArray() implementation. 00119 ** 00120 ** Revision 1.10 2001/09/25 17:19:30 meichel 00121 ** Adapted dcmdata to class OFCondition 00122 ** 00123 ** Revision 1.9 2001/06/01 15:48:47 meichel 00124 ** Updated copyright header 00125 ** 00126 ** Revision 1.8 2000/03/08 16:26:21 meichel 00127 ** Updated copyright header. 00128 ** 00129 ** Revision 1.7 1999/03/31 09:24:55 meichel 00130 ** Updated copyright header in module dcmdata 00131 ** 00132 ** Revision 1.6 1998/11/12 16:47:44 meichel 00133 ** Implemented operator= for all classes derived from DcmObject. 00134 ** 00135 ** Revision 1.5 1997/09/11 15:13:12 hewett 00136 ** Modified getOFString method arguments by removing a default value 00137 ** for the pos argument. By requiring the pos argument to be provided 00138 ** ensures that callers realise getOFString only gets one component of 00139 ** a multi-valued string. 00140 ** 00141 ** Revision 1.4 1997/08/29 08:32:40 andreas 00142 ** - Added methods getOFString and getOFStringArray for all 00143 ** string VRs. These methods are able to normalise the value, i. e. 00144 ** to remove leading and trailing spaces. This will be done only if 00145 ** it is described in the standard that these spaces are not relevant. 00146 ** These methods do not test the strings for conformance, this means 00147 ** especially that they do not delete spaces where they are not allowed! 00148 ** getOFStringArray returns the string with all its parts separated by \ 00149 ** and getOFString returns only one value of the string. 00150 ** CAUTION: Currently getString returns a string with trailing 00151 ** spaces removed (if dcmEnableAutomaticInputDataCorrection == OFTrue) and 00152 ** truncates the original string (since it is not copied!). If you rely on this 00153 ** behaviour please change your application now. 00154 ** Future changes will ensure that getString returns the original 00155 ** string from the DICOM object (NULL terminated) inclusive padding. 00156 ** Currently, if you call getOF... before calling getString without 00157 ** normalisation, you can get the original string read from the DICOM object. 00158 ** 00159 ** Revision 1.3 1996/01/05 13:23:02 andreas 00160 ** - changed to support new streaming facilities 00161 ** - more cleanups 00162 ** - merged read / write methods for block and file transfer 00163 ** 00164 */