📄 dcrleerg.h
字号:
/* * * Copyright (C) 1994-2005, OFFIS * * This software and supporting documentation were developed by * * Kuratorium OFFIS e.V. * Healthcare Information and Communication Systems * Escherweg 2 * D-26121 Oldenburg, Germany * * THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND OFFIS MAKES NO WARRANTY * REGARDING THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR * FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR * ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND * PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * * Module: dcmdata * * Author: Marco Eichelberg * * Purpose: singleton class that registers RLE encoder. * * Last Update: $Author: meichel $ * Update Date: $Date: 2005/12/08 16:28:39 $ * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcrleerg.h,v $ * CVS/RCS Revision: $Revision: 1.4 $ * Status: $State: Exp $ * * CVS/RCS Log at end of file * */#ifndef DCRLEERG_H#define DCRLEERG_H#include "dcmtk/config/osconfig.h"#include "dcmtk/ofstd/oftypes.h" /* for OFBool */#include "dcmtk/dcmdata/dctypes.h" /* for Uint32 */class DcmRLECodecParameter;class DcmRLECodecEncoder;/** singleton class that registers an RLE encoder. */class DcmRLEEncoderRegistration {public: /** registers RLE encoder. * If already registered, call is ignored unless cleanup() has * been performed before. * @param pCreateSOPInstanceUID flag indicating whether or not * a new SOP Instance UID should be assigned upon compression. * @param pVerbose verbose mode flag * @param pFragmentSize maximum fragment size (in kbytes) for compression, 0 for unlimited. * @param pCreateOffsetTable create offset table during image compression? * @param pConvertToSC flag indicating whether image should be converted to * Secondary Capture upon compression */ static void registerCodecs( OFBool pCreateSOPInstanceUID = OFFalse, OFBool pVerbose = OFFalse, Uint32 pFragmentSize = 0, OFBool pCreateOffsetTable = OFTrue, OFBool pConvertToSC = OFFalse); /** deregisters encoder. * Attention: Must not be called while other threads might still use * the registered codecs, e.g. because they are currently encoding * DICOM data sets through dcmdata. */ static void cleanup();private: /// private undefined copy constructor DcmRLEEncoderRegistration(const DcmRLEEncoderRegistration&); /// private undefined copy assignment operator DcmRLEEncoderRegistration& operator=(const DcmRLEEncoderRegistration&); /// flag indicating whether the encoder is already registered. static OFBool registered; /// pointer to codec parameter static DcmRLECodecParameter *cp; /// pointer to RLE encoder static DcmRLECodecEncoder *codec; // dummy friend declaration to prevent gcc from complaining // that this class only defines private constructors and has no friends. friend class DcmRLEEncoderRegistrationDummyFriend; };#endif/* * CVS/RCS Log * $Log: dcrleerg.h,v $ * Revision 1.4 2005/12/08 16:28:39 meichel * Changed include path schema for all DCMTK header files * * Revision 1.3 2004/01/20 12:57:21 meichel * Added dummy friend class to avoid warning on certain gcc releases * * Revision 1.2 2003/03/21 13:06:46 meichel * Minor code purifications for warnings reported by MSVC in Level 4 * * Revision 1.1 2002/06/06 14:52:37 meichel * Initial release of the new RLE codec classes * and the dcmcrle/dcmdrle tools in module dcmdata * * */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -