00001 /* 00002 * 00003 * Copyright (C) 2001-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: dcmdata 00015 * 00016 * Author: Michael Onken 00017 * 00018 * Purpose: Class for conversion of image file into DICOM SC Image Storage 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:15:46 $ 00022 * CVS/RCS Revision: $Revision: 1.5 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 #ifndef I2DPLSC_H 00030 #define I2DPLSC_H 00031 00032 #include "dcmtk/config/osconfig.h" 00033 #include "dcmtk/dcmdata/libi2d/i2doutpl.h" 00034 00035 class I2DOutputPlugSC : public I2DOutputPlug 00036 { 00037 00038 public: 00039 00043 I2DOutputPlugSC(); 00044 00048 virtual OFString ident(); 00049 00056 virtual void supportedSOPClassUIDs(OFList<OFString> suppSOPs); 00057 00062 virtual OFCondition convert(DcmDataset &dataset) const; 00063 00069 virtual OFString isValid(DcmDataset& dataset) const; 00070 00074 virtual ~I2DOutputPlugSC(); 00075 00076 }; 00077 00078 #endif // I2DPLSC_H 00079 00080 /* 00081 * CVS/RCS Log: 00082 * $Log: i2dplsc.h,v $ 00083 * Revision 1.5 2010-10-14 13:15:46 joergr 00084 * Updated copyright header. Added reference to COPYRIGHT file. 00085 * 00086 * Revision 1.4 2009-11-04 09:58:08 uli 00087 * Switched to logging mechanism provided by the "new" oflog module 00088 * 00089 * Revision 1.3 2009-09-30 08:05:25 uli 00090 * Stop including dctk.h in libi2d's header files. 00091 * 00092 * Revision 1.2 2009-01-16 09:51:55 onken 00093 * Completed doxygen documentation for libi2d. 00094 * 00095 * Revision 1.1 2008-01-16 15:12:20 onken 00096 * Moved library "i2dlib" from /dcmdata/libsrc/i2dlib to /dcmdata/libi2d 00097 * 00098 * Revision 1.2 2008-01-11 14:17:53 onken 00099 * Added various options to i2dlib. Changed logging to use a configurable 00100 * logstream. Added output plugin for the new Multiframe Secondary Capture SOP 00101 * Classes. Added mode for JPEG plugin to copy exsiting APPn markers (except 00102 * JFIF). Changed img2dcm default behaviour to invent type1/type2 attributes (no 00103 * need for templates any more). Added some bug fixes. 00104 * 00105 * Revision 1.1 2007/11/08 15:58:56 onken 00106 * Initial checkin of img2dcm application and corresponding library i2dlib. 00107 * 00108 * 00109 */