00001 /* 00002 * 00003 * Copyright (C) 2002, 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: Joerg Riesmeier 00021 * 00022 * Purpose: Interface of class DcmOtherFloat 00023 * 00024 * Last Update: $Author: joergr $ 00025 * Update Date: $Date: 2002/12/06 12:06:39 $ 00026 * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcvrof.h,v $ 00027 * CVS/RCS Revision: $Revision: 1.1 $ 00028 * Status: $State: Exp $ 00029 * 00030 * CVS/RCS Log at end of file 00031 * 00032 */ 00033 00034 00035 #ifndef DCVROF_H 00036 #define DCVROF_H 00037 00038 #include "osconfig.h" /* make sure OS specific configuration is included first */ 00039 00040 #include "dcvrfl.h" 00041 00042 00045 class DcmOtherFloat 00046 : public DcmFloatingPointSingle 00047 { 00048 00049 public: 00050 00056 DcmOtherFloat(const DcmTag &tag, 00057 const Uint32 len = 0); 00058 00062 DcmOtherFloat(const DcmOtherFloat &old); 00063 00066 virtual ~DcmOtherFloat(); 00067 00072 DcmOtherFloat &operator=(const DcmOtherFloat &obj); 00073 00077 virtual DcmEVR ident() const; 00078 00082 virtual unsigned long getVM(); 00083 }; 00084 00085 00086 #endif // DCVROF_H 00087 00088 00089 /* 00090 * CVS/RCS Log: 00091 * $Log: dcvrof.h,v $ 00092 * Revision 1.1 2002/12/06 12:06:39 joergr 00093 * Added support for new value representation Other Float String (OF). 00094 * 00095 * 00096 */