00001 00002 #ifndef LESTER_LARGECARROT_H 00003 #define LESTER_LARGECARROT_H 00004 00005 #include "Rabbit.hh" 00006 #include "LargeOnion.h" 00007 00008 class LargeCarrot : public POA_Stew::Carrot { 00009 00010 public: 00011 00012 virtual Stew::Onion_ptr anOnion() { 00013 static LargeOnion largeOnion; 00014 return largeOnion._this(); 00015 }; 00016 00017 }; 00018 00019 #endif