Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GDCMAPPLICATIONENTITY_H
00016 #define GDCMAPPLICATIONENTITY_H
00017
00018 #include "gdcmTypes.h"
00019 #include <vector>
00020 #include <stdlib.h>
00021
00022 namespace gdcm
00023 {
00024
00035 class GDCM_EXPORT ApplicationEntity
00036 {
00037 public:
00038 static const unsigned int MaxNumberOfComponents = 1;
00039 static const unsigned int MaxLength = 16;
00040 std::string Internal;
00041 static const char Separator = ' ';
00042 static const char Padding = ' ';
00043
00044
00045 bool IsValid() const {
00046 return true;
00047 }
00048 void Squeeze() {
00049
00050 }
00051 void SetBlob(const std::vector<char>& v) {
00052 (void)v;
00053 assert(0);
00054 }
00055 void Print(std::ostream &os) const {
00056 (void)os;
00057 assert(0);
00058 }
00059 };
00060
00061 }
00062
00063 #endif //GDCMAPPLICATIONENTITY_H
00064