cgma
|
00001 //- Class: ChollaEntity 00002 //- Description: ChollaEntity class - the base class in the Cholla Geometry Entities. 00003 //- Owner: Steve Owen 00004 //- Checked by: 00005 //- Version: $Id: 00006 00007 #ifndef CHOLLAENTITY_HPP 00008 #define CHOLLAENTITY_HPP 00009 00010 00011 00012 class ChollaEntity 00013 { 00014 private: 00015 00016 public: 00017 00018 ChollaEntity(); 00019 virtual ~ChollaEntity(); 00020 }; 00021 00022 00023 00024 #endif // CHOLLAENTITY_HPP 00025 00026