GDCM
2.2.3
|
00001 /*========================================================================= 00002 00003 Program: GDCM (Grassroots DICOM). A DICOM library 00004 00005 Copyright (c) 2006-2011 Mathieu Malaterre 00006 All rights reserved. 00007 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details. 00008 00009 This software is distributed WITHOUT ANY WARRANTY; without even 00010 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00011 PURPOSE. See the above copyright notice for more information. 00012 00013 =========================================================================*/ 00014 00015 #ifndef GDCMSEGMENTEDPALETTECOLORLOOKUPTABLE_H 00016 #define GDCMSEGMENTEDPALETTECOLORLOOKUPTABLE_H 00017 00018 #include "gdcmLookupTable.h" 00019 00020 namespace gdcm 00021 { 00022 00026 class GDCM_EXPORT SegmentedPaletteColorLookupTable : public LookupTable 00027 { 00028 public: 00029 SegmentedPaletteColorLookupTable(); 00030 ~SegmentedPaletteColorLookupTable(); 00031 void Print(std::ostream &) const {} 00032 00034 void SetLUT(LookupTableType type, const unsigned char *array, 00035 unsigned int length); 00036 00037 }; 00038 00039 } // end namespace gdcm 00040 00041 #endif //GDCMSEGMENTEDPALETTECOLORLOOKUPTABLE_H