00001 /* 00002 * 00003 * Copyright (C) 1994-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmnet 00015 * 00016 * Author: Marco Eichelberg 00017 * 00018 * Purpose: 00019 * class DcmTransferSyntaxMap 00020 * 00021 * Last Update: $Author: joergr $ 00022 * Update Date: $Date: 2010-10-14 13:17:22 $ 00023 * CVS/RCS Revision: $Revision: 1.3 $ 00024 * Status: $State: Exp $ 00025 * 00026 * CVS/RCS Log at end of file 00027 * 00028 */ 00029 00030 #ifndef DCCFTSMP_H 00031 #define DCCFTSMP_H 00032 00033 #include "dcmtk/config/osconfig.h" 00034 #include "dcmtk/ofstd/oflist.h" /* for class OFList<> */ 00035 #include "dcmtk/ofstd/ofcond.h" /* for class OFCondition */ 00036 #include "dcmtk/dcmnet/dcmsmap.h" /* for class DcmSimpleMap<> */ 00037 #include "dcmtk/dcmnet/dccfuidh.h" /* for class DcmUIDHandler */ 00038 00039 00043 typedef OFList<DcmUIDHandler> DcmTransferSyntaxList; 00044 00048 class DcmTransferSyntaxMap 00049 { 00050 public: 00052 DcmTransferSyntaxMap(); 00053 00055 ~DcmTransferSyntaxMap(); 00056 00064 OFCondition add( 00065 const char *key, 00066 const char *transferSyntaxUID); 00067 00072 OFBool isKnownKey(const char *key) const; 00073 00078 const DcmTransferSyntaxList *getTransferSyntaxList(const char *key) const; 00079 00080 private: 00082 DcmTransferSyntaxMap(const DcmTransferSyntaxMap& arg); 00083 00085 DcmTransferSyntaxMap& operator=(const DcmTransferSyntaxMap& arg); 00086 00088 DcmSimpleMap<DcmTransferSyntaxList *> map_; 00089 00090 }; 00091 00092 #endif 00093 00094 /* 00095 * CVS/RCS Log 00096 * $Log: dccftsmp.h,v $ 00097 * Revision 1.3 2010-10-14 13:17:22 joergr 00098 * Updated copyright header. Added reference to COPYRIGHT file. 00099 * 00100 * Revision 1.2 2005/12/08 16:02:14 meichel 00101 * Changed include path schema for all DCMTK header files 00102 * 00103 * Revision 1.1 2003/06/10 14:27:33 meichel 00104 * Initial release of class DcmAssociationConfiguration and support 00105 * classes. This class maintains a list of association negotiation 00106 * profiles that can be addressed by symbolic keys. The profiles may 00107 * be read from a configuration file. 00108 * 00109 * 00110 */