]> Creatis software - gdcm.git/blob - Testing/TestVR.cxx
ENH: Minor cleanup, mostly cosmetic
[gdcm.git] / Testing / TestVR.cxx
1 #include "gdcmVR.h"
2
3 int TestVR(int , char *[])
4 {
5    gdcm::VR vr;
6    // There should be 16 entries
7    vr.Print( std::cout );
8    vr.IsVROfGdcmStringRepresentable( "" );
9    vr.IsVROfGdcmBinaryRepresentable( "" );
10
11    return 0;
12 }