00001 //deprecated 00003 // 00004 // PROJECT.....: vpat - Creating Virtual Patients 00005 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00006 // 00007 // FILE........: vpimage.cpp 00008 // DESCRIPTION.: Contain the VPImage class implementation, which 00009 // is the superclass of VPVolume and VPImage2D classes. 00010 // 00011 // AUTHOR......: Isabel Harb Manssour 00012 // DATE........: July/14/2000 00013 // DESCRIPTION.: Some methods declarations. 00014 // 00016 00017 00018 #include <vpimage.h> 00019 00020 00022 // Description: Class "VPImage" constructor without parameter. 00023 // Parameters.: - 00024 // Return.....: - 00025 00026 VPImage::VPImage () { 00027 xDimension = 0; 00028 yDimension = 0; 00029 } 00030