00001 //deprecated 00003 // 00004 // PROJECT.....: vpat - Creating Virtual Patients 00005 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00006 // 00007 // FILE........: vpedge.h 00008 // DESCRIPTION.: Contain the VPEdge class declarations. 00009 // 00010 // AUTHOR......: Julierme Krüger Gaviăo 00011 // DATE........: June/07/2000 00012 // DESCRIPTION.: Class and methods declaration. 00013 // 00014 // AUTHOR......: Anderson Maciel 00015 // DATE........: August/22/2000 00016 // DESCRIPTION.: Class standarization. 00017 // 00019 00020 #ifndef __VPEDGE_H // Verify previous includes of vpvertex.h header 00021 #define __VPEDGE_H 00022 00023 #include <vpvertex3d.h> 00024 00025 00026 //----------------------------------------------------------------------- 00027 // V P E D G E 00028 //----------------------------------------------------------------------- 00029 00031 // Class Name: VPEdge 00032 // Superclass: - 00033 // Subclass: - 00035 00036 class VPEdge { 00037 private: 00038 VPVertex3D initial, final; 00039 00040 public: 00041 VPEdge( void ); 00042 VPEdge( VPVertex3D i, VPVertex3D f); 00043 VPVertex3D *vpGetI( void ); 00044 VPVertex3D *vpGetF( void ); 00045 void vpSetI( VPVertex3D *i ); 00046 void vpSetF( VPVertex3D *f ); 00047 }; 00048 00049 #endif