X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestVR.cxx;h=6801c655f3c2c3436660abc2052dc669b134b6e9;hb=33efd98097d5ceaafeba83366c4183aeead0cf5b;hp=6370ad926fb3b312ca6d53d26561c0223178ae2d;hpb=9649936f884197f6f6260aae051d33729bce07d5;p=gdcm.git diff --git a/Testing/TestVR.cxx b/Testing/TestVR.cxx index 6370ad92..6801c655 100644 --- a/Testing/TestVR.cxx +++ b/Testing/TestVR.cxx @@ -1,3 +1,20 @@ +/*========================================================================= + + Program: gdcm + Module: $RCSfile: TestVR.cxx,v $ + Language: C++ + Date: $Date: 2005/01/06 20:03:26 $ + Version: $Revision: 1.4 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include "gdcmVR.h" int TestVR(int , char *[]) @@ -5,8 +22,10 @@ int TestVR(int , char *[]) gdcm::VR vr; // There should be 16 entries vr.Print( std::cout ); - vr.IsVROfGdcmStringRepresentable( "" ); - vr.IsVROfGdcmBinaryRepresentable( "" ); + + vr.IsVROfStringRepresentable( "" ); + vr.IsVROfBinaryRepresentable( "" ); + vr.IsVROfSequence( "" ); return 0; }