⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dcasccff.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 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:  dcmnet * *  Author:  Marco Eichelberg * *  Purpose:  *    class DcmAssociationConfigurationFile *  *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:02:08 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmnet/include/dcmtk/dcmnet/dcasccff.h,v $ *  CVS/RCS Revision: $Revision: 1.2 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DCASCCFF_H#define DCASCCFF_H#include "dcmtk/config/osconfig.h"#include "dcmtk/ofstd/ofcond.h"   /* for class OFCondition */class DcmAssociationConfiguration;class OFConfigFile;/** helper class that encapsulated methods for filling  *  a DcmAssociationConfiguration object from a config file */class DcmAssociationConfigurationFile{public:  /** reads the given configuration file and feeds the information   *  contained therein into the association configuration object.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition initialize(    DcmAssociationConfiguration& cfg,    const char *filename);private:  /** parses the transfer syntax lists in the config file.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition parseTransferSyntaxes(    DcmAssociationConfiguration& cfg,    OFConfigFile& config);  /** parses the presentation context lists in the config file.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition parsePresentationContexts(    DcmAssociationConfiguration& cfg,    OFConfigFile& config);  /** parses the role selection lists in the config file.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition parseRoleSelectionItems(    DcmAssociationConfiguration& cfg,    OFConfigFile& config);  /** parses the extended negotiation lists in the config file.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition parseExtendedNegotiationItems(    DcmAssociationConfiguration& cfg,    OFConfigFile& config);  /** parses the association configuration profile lists in the config file.   *  @param cfg association configuration object to initialize   *  @param filename name of config file   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition parseProfiles(    DcmAssociationConfiguration& cfg,    OFConfigFile& config);};#endif/* * CVS/RCS Log * $Log: dcasccff.h,v $ * Revision 1.2  2005/12/08 16:02:08  meichel * Changed include path schema for all DCMTK header files * * Revision 1.1  2003/06/10 14:27:33  meichel * Initial release of class DcmAssociationConfiguration and support *   classes. This class maintains a list of association negotiation *   profiles that can be addressed by symbolic keys. The profiles may *   be read from a configuration file. * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -