00001 00002 // 00003 // PROJECT.....: vpat - Creating Virtual Patients 00004 // RESPONSIBLE.: Carla Freitas e Luciana Nedel 00005 // 00006 // FILE........: vpmymesh.h 00007 // DESCRIPTION.: Contain the VPMesh class declarations. 00008 // 00009 // AUTHOR......: Isabel Harb Manssour 00010 // DATE........: December/18/2000 00011 // DESCRIPTION.: Classdeclaration. 00012 // 00014 00015 #ifndef __VPMYMESH_H // Verify previous includes of vpmesh.h header 00016 #define __VPMYMESH_H 00017 00018 #include <vpgraphicobj.h> 00019 00020 00022 // Class Name: VPMesh 00023 // Superclass: - 00024 // Subclass: - 00025 00026 class VPMesh : public VPGraphicObj{ 00027 public: 00028 VPMesh ( void ) {}; 00029 }; 00030 00031 #endif