GDCM
2.2.0
|
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 #ifndef GDCMASN1_H 00015 #define GDCMASN1_H 00016 00017 #include "gdcmTypes.h" 00018 00019 00020 namespace gdcm 00021 { 00022 //----------------------------------------------------------------------------- 00023 class ASN1Internals; 00028 class GDCM_EXPORT ASN1 00029 { 00030 public : 00031 ASN1(); 00032 ~ASN1(); 00033 00034 static bool ParseDumpFile(const char *filename); 00035 00036 static bool ParseDump(const char *array, size_t length); 00037 00038 protected: 00039 int TestPBKDF2(); 00040 00041 private: 00042 ASN1Internals *Internals; 00043 private: 00044 ASN1(const ASN1&); // Not implemented. 00045 void operator=(const ASN1&); // Not implemented. 00046 }; 00047 } // end namespace gdcm 00048 //----------------------------------------------------------------------------- 00049 #endif //GDCMASN1_H