X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestDict.cxx;h=2a85a6c85e1d84e08172234501ded0ccec254132;hb=57ec56658548c34052a1c1678ffcb6907c3faeec;hp=232bbb01d5a9b62051fb7d5304efbe9bc012eada;hpb=6a7c2fbcb5bfc240a3b9875ad4836f5dc058e069;p=gdcm.git diff --git a/Testing/TestDict.cxx b/Testing/TestDict.cxx index 232bbb01..2a85a6c8 100644 --- a/Testing/TestDict.cxx +++ b/Testing/TestDict.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestDict.cxx,v $ Language: C++ - Date: $Date: 2005/10/20 15:24:05 $ - Version: $Revision: 1.9 $ + Date: $Date: 2005/11/29 17:08:54 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -28,13 +28,13 @@ int TestDict(int , char *[]) std::cout << "----- Test Default Dicom Dictionary : ----------" << std::endl; // Just to improve test coverage: - gdcm::Dict *tempDict = new gdcm::Dict("dummyFileNameThatDoesntExist"); + gdcm::Dict *tempDict = gdcm::Dict::New("dummyFileNameThatDoesntExist"); // Default dict is supposed to be used. tempDict->Print(); std::cout << "---- end Test Default Dicom Dictionary : -------" << std::endl; // Lets delete it. - delete tempDict; + tempDict->Delete(); // Print the DictSet @@ -96,18 +96,17 @@ int TestDict(int , char *[]) entry=pubDict->GetFirstEntry(); while(entry) { - std::cout << entry->GetGroup() << "|" << entry->GetElement() - << " [" << entry->GetVR() << "] - M" << entry->GetVM() - << " : " << entry->GetName() << " ( " << entry->GetKey() << ")\n"; + std::cout << std::hex << entry->GetGroup() << "|" << entry->GetElement() + << " [" << entry->GetVR() << "] - VM [" << entry->GetVM() + << "] : " << entry->GetName() << " ( " << entry->GetKey() << ")\n"; entry=pubDict->GetNextEntry(); } - // Let's play with DicEntry stuff ! - +/* // Let's play with DicEntry stuff ! // First, we try to break an Entry. entry=pubDict->GetFirstEntry(); entry->SetVR("PN"); - // Should warn us ! + // Should warn us !*/ return(0); }