OFFIS DCMTK  Version 3.6.0
djrploss.h
1 /*
2  *
3  * Copyright (C) 1997-2010, OFFIS e.V.
4  * All rights reserved. See COPYRIGHT file for details.
5  *
6  * This software and supporting documentation were developed by
7  *
8  * OFFIS e.V.
9  * R&D Division Health
10  * Escherweg 2
11  * D-26121 Oldenburg, Germany
12  *
13  *
14  * Module: dcmjpeg
15  *
16  * Author: Norbert Olges, Marco Eichelberg
17  *
18  * Purpose: representation parameter for lossy JPEG
19  *
20  * Last Update: $Author: joergr $
21  * Update Date: $Date: 2010-10-14 13:17:17 $
22  * CVS/RCS Revision: $Revision: 1.3 $
23  * Status: $State: Exp $
24  *
25  * CVS/RCS Log at end of file
26  *
27  */
28 
29 #ifndef DJRPLOSS_H
30 #define DJRPLOSS_H
31 
32 #include "dcmtk/config/osconfig.h"
33 #include "dcmtk/dcmdata/dcpixel.h" /* for class DcmRepresentationParameter */
34 
38 {
39 public:
40 
44  DJ_RPLossy(int aQuality=90);
45 
47  DJ_RPLossy(const DJ_RPLossy& arg);
48 
50  virtual ~DJ_RPLossy();
51 
56  virtual DcmRepresentationParameter *clone() const;
57 
61  virtual const char *className() const;
62 
68  virtual OFBool operator==(const DcmRepresentationParameter &arg) const;
69 
73  int getQuality() const
74  {
75  return quality;
76  }
77 
78 private:
79 
81  int quality;
82 
83 };
84 
85 
86 #endif
87 
88 /*
89  * CVS/RCS Log
90  * $Log: djrploss.h,v $
91  * Revision 1.3 2010-10-14 13:17:17 joergr
92  * Updated copyright header. Added reference to COPYRIGHT file.
93  *
94  * Revision 1.2 2005-12-08 16:59:37 meichel
95  * Changed include path schema for all DCMTK header files
96  *
97  * Revision 1.1 2001/11/13 15:56:29 meichel
98  * Initial release of module dcmjpeg
99  *
100  *
101  */


Generated on Thu Dec 20 2012 for OFFIS DCMTK Version 3.6.0 by Doxygen 1.8.2