00001 /* 00002 * 00003 * Copyright (C) 1994-2005, 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: dcmnet 00019 * 00020 * Author: Marco Eichelberg 00021 * 00022 * Purpose: 00023 * class DcmAssociationConfigurationFile 00024 * 00025 * Last Update: $Author: meichel $ 00026 * Update Date: $Date: 2005/12/08 16:02:08 $ 00027 * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmnet/include/dcmtk/dcmnet/dcasccff.h,v $ 00028 * CVS/RCS Revision: $Revision: 1.2 $ 00029 * Status: $State: Exp $ 00030 * 00031 * CVS/RCS Log at end of file 00032 * 00033 */ 00034 00035 #ifndef DCASCCFF_H 00036 #define DCASCCFF_H 00037 00038 #include "dcmtk/config/osconfig.h" 00039 #include "dcmtk/ofstd/ofcond.h" /* for class OFCondition */ 00040 00041 class DcmAssociationConfiguration; 00042 class OFConfigFile; 00043 00047 class DcmAssociationConfigurationFile 00048 { 00049 public: 00050 00057 static OFCondition initialize( 00058 DcmAssociationConfiguration& cfg, 00059 const char *filename); 00060 00061 private: 00062 00068 static OFCondition parseTransferSyntaxes( 00069 DcmAssociationConfiguration& cfg, 00070 OFConfigFile& config); 00071 00077 static OFCondition parsePresentationContexts( 00078 DcmAssociationConfiguration& cfg, 00079 OFConfigFile& config); 00080 00086 static OFCondition parseRoleSelectionItems( 00087 DcmAssociationConfiguration& cfg, 00088 OFConfigFile& config); 00089 00095 static OFCondition parseExtendedNegotiationItems( 00096 DcmAssociationConfiguration& cfg, 00097 OFConfigFile& config); 00098 00104 static OFCondition parseProfiles( 00105 DcmAssociationConfiguration& cfg, 00106 OFConfigFile& config); 00107 00108 }; 00109 00110 #endif 00111 00112 /* 00113 * CVS/RCS Log 00114 * $Log: dcasccff.h,v $ 00115 * Revision 1.2 2005/12/08 16:02:08 meichel 00116 * Changed include path schema for all DCMTK header files 00117 * 00118 * Revision 1.1 2003/06/10 14:27:33 meichel 00119 * Initial release of class DcmAssociationConfiguration and support 00120 * classes. This class maintains a list of association negotiation 00121 * profiles that can be addressed by symbolic keys. The profiles may 00122 * be read from a configuration file. 00123 * 00124 * 00125 */