Animal.h

Go to the documentation of this file.
00001 // Animal.h
00002 
00003 #ifndef A_ANIMAL_H
00004 #define A_ANIMAL_H
00005 
00006 #include <string>
00007 
00008 using std::string ;
00009 
00010 class Animal {
00011 private:
00012     string                      _name ;
00013 public:
00014                                 Animal( char *name ) ;
00015     virtual                     ~Animal(void) ;
00016     virtual string              get_name() ;
00017 };
00018 
00019 #endif
00020 

Generated on Wed Aug 29 03:14:15 2007 for OPeNDAP Back End Server (BES) by  doxygen 1.5.2