gdcmASN1.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef __gdcmASN1_h
00016 #define __gdcmASN1_h
00017
00018 #include "gdcmTypes.h"
00019
00020
00021 namespace gdcm
00022 {
00023
00024 class ASN1Internals;
00029 class GDCM_EXPORT ASN1
00030 {
00031 public :
00032 ASN1();
00033 ~ASN1();
00034
00035 static bool ParseDumpFile(const char *filename);
00036
00037 static bool ParseDump(const char *array, size_t length);
00038
00039 protected:
00040 int TestPBKDF2();
00041
00042 private:
00043 ASN1Internals *Internals;
00044 private:
00045 ASN1(const ASN1&);
00046 void operator=(const ASN1&);
00047 };
00048 }
00049
00050 #endif //__gdcmASN1_h