Animal.cc

Go to the documentation of this file.
00001 // Animal.cc
00002 
00003 #include "Animal.h"
00004 
00005 Animal::Animal( char *name )
00006     : _name( name )
00007 {
00008 }
00009 
00010 Animal::~Animal( )
00011 {
00012 }
00013 
00014 string
00015 Animal::get_name( )
00016 {
00017     return _name ;
00018 }
00019 

Generated on Fri Nov 30 12:06:46 2007 for OPeNDAP Back End Server (BES) by  doxygen 1.5.1