Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | Related Pages

dcovlay.h

00001 /*
00002  *
00003  *  Copyright (C) 1994-2001, 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:  Andreas Barth
00021  *
00022  *  Purpose: Interface of class DcmOverlayData
00023  *
00024  *  Last Update:      $Author: meichel $
00025  *  Update Date:      $Date: 2001/06/01 15:48:42 $
00026  *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcovlay.h,v $
00027  *  CVS/RCS Revision: $Revision: 1.5 $
00028  *  Status:           $State: Exp $
00029  *
00030  *  CVS/RCS Log at end of file
00031  *
00032  */
00033 
00034 #ifndef DCOVLAY_H
00035 #define DCOVLAY_H
00036 
00037 #include "osconfig.h"    /* make sure OS specific configuration is included first */
00038 
00039 #include "dcvrpobw.h"
00040 
00041 
00042 class DcmOverlayData : public DcmPolymorphOBOW
00043 {
00044 public:
00045     DcmOverlayData(
00046     const DcmTag & tag, 
00047     const Uint32 len = 0)
00048     : DcmPolymorphOBOW(tag, len) {}
00049     DcmOverlayData(
00050     const DcmOverlayData & oldObj)
00051     : DcmPolymorphOBOW(oldObj) {}
00052     virtual ~DcmOverlayData() {}
00053 
00054     DcmOverlayData &operator=(const DcmOverlayData &obj) { DcmPolymorphOBOW::operator=(obj); return *this; }
00055 
00056     virtual DcmEVR ident() const { return EVR_OverlayData; }
00057 };
00058 
00059 #endif
00060 
00061 /*
00062 ** CVS/RCS Log:
00063 ** $Log: dcovlay.h,v $
00064 ** Revision 1.5  2001/06/01 15:48:42  meichel
00065 ** Updated copyright header
00066 **
00067 ** Revision 1.4  2000/03/08 16:26:16  meichel
00068 ** Updated copyright header.
00069 **
00070 ** Revision 1.3  1999/03/31 09:24:43  meichel
00071 ** Updated copyright header in module dcmdata
00072 **
00073 ** Revision 1.2  1998/11/12 16:47:41  meichel
00074 ** Implemented operator= for all classes derived from DcmObject.
00075 **
00076 ** Revision 1.1  1997/07/21 07:54:00  andreas
00077 ** - Support for CP 14. PixelData and OverlayData can have VR OW or OB
00078 **   (depending on the transfer syntax). New internal value
00079 **   representation (only for ident()) for OverlayData.
00080 ** 
00081 */


Generated on 26 Apr 2005 for OFFIS DCMTK Version 3.5.3 by Doxygen 1.4.2