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 DcmAgeString 00023 * 00024 * Last Update: $Author: meichel $ 00025 * Update Date: $Date: 2005/12/08 16:28:52 $ 00026 * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcvras.h,v $ 00027 * CVS/RCS Revision: $Revision: 1.10 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 00035 #ifndef DCVRAS_H 00036 #define DCVRAS_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 DcmAgeString 00046 : public DcmByteString 00047 { 00048 00049 public: 00050 00056 DcmAgeString(const DcmTag &tag, 00057 const Uint32 len = 0); 00058 00062 DcmAgeString(const DcmAgeString &old); 00063 00066 virtual ~DcmAgeString(void); 00067 00072 DcmAgeString &operator=(const DcmAgeString &obj); 00073 00077 virtual DcmObject *clone() const 00078 { 00079 return new DcmAgeString(*this); 00080 } 00081 00085 virtual DcmEVR ident(void) const; 00086 }; 00087 00088 00089 #endif // DCVRAS_H 00090 00091 00092 /* 00093 ** CVS/RCS Log: 00094 ** $Log: dcvras.h,v $ 00095 ** Revision 1.10 2005/12/08 16:28:52 meichel 00096 ** Changed include path schema for all DCMTK header files 00097 ** 00098 ** Revision 1.9 2004/07/01 12:28:25 meichel 00099 ** Introduced virtual clone method for DcmObject and derived classes. 00100 ** 00101 ** Revision 1.8 2002/12/06 12:49:13 joergr 00102 ** Enhanced "print()" function by re-working the implementation and replacing 00103 ** the boolean "showFullData" parameter by a more general integer flag. 00104 ** Added doc++ documentation. 00105 ** Made source code formatting more consistent with other modules/files. 00106 ** 00107 ** Revision 1.7 2001/06/01 15:48:48 meichel 00108 ** Updated copyright header 00109 ** 00110 ** Revision 1.6 2000/03/08 16:26:21 meichel 00111 ** Updated copyright header. 00112 ** 00113 ** Revision 1.5 1999/03/31 09:24:55 meichel 00114 ** Updated copyright header in module dcmdata 00115 ** 00116 ** Revision 1.4 1998/11/12 16:47:45 meichel 00117 ** Implemented operator= for all classes derived from DcmObject. 00118 ** 00119 ** Revision 1.3 1996/01/05 13:23:02 andreas 00120 ** - changed to support new streaming facilities 00121 ** - more cleanups 00122 ** - merged read / write methods for block and file transfer 00123 ** 00124 */