34 lines
734 B
C
34 lines
734 B
C
/*
|
|
*
|
|
* Copyright (C) 1994-2010, OFFIS e.V.
|
|
* All rights reserved. See COPYRIGHT file for details.
|
|
*
|
|
* This software and supporting documentation were developed by
|
|
*
|
|
* OFFIS e.V.
|
|
* R&D Division Health
|
|
* Escherweg 2
|
|
* D-26121 Oldenburg, Germany
|
|
*
|
|
*
|
|
* Module: dcmdata
|
|
*
|
|
* Author: Marco Eichelberg
|
|
*
|
|
* Purpose: definition of class DcmOffsetList
|
|
*
|
|
*/
|
|
|
|
#ifndef DCOFSETL_H
|
|
#define DCOFSETL_H
|
|
|
|
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
|
|
#include "dcmtk/ofstd/oflist.h" /* for class OFList<T> */
|
|
|
|
/** list of Uint32 values which are interpreted as the offsets
|
|
* in a Pixel Data offset table
|
|
*/
|
|
typedef OFList<Uint32> DcmOffsetList;
|
|
|
|
#endif
|