Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GDCMVALIDATE_H
00016 #define GDCMVALIDATE_H
00017
00018 #include "gdcmFile.h"
00019
00020 namespace gdcm
00021 {
00022
00026 class GDCM_EXPORT Validate
00027 {
00028 public:
00029 Validate();
00030 ~Validate();
00031
00032 void SetFile(File const &f) { F = &f; }
00033 const File& GetValidatedFile() { return V; }
00034
00035 void Validation();
00036
00037 protected:
00038 const File *F;
00039 File V;
00040 };
00041
00042 }
00043
00044 #endif //GDCMVALIDATE_H