00001 #ifndef CAFE_EVENTLISTEXPANDER_HPP_ 00002 #define CAFE_EVENTLISTEXPANDER_HPP_ 00003 00004 #include "cafe/Expander.hpp" 00005 00006 #include <list> 00007 #include <string> 00008 00009 namespace cafe { 00010 00011 class EventListExpander : public Expander { 00012 public: 00013 EventListExpander(const char *url); 00014 virtual std::string nextFile(); 00015 private: 00016 std::list<std::string> _files; 00017 ClassDef(EventListExpander, 0); 00018 }; 00019 00020 } 00021 00022 #endif // CAFE_EVENTLISTEXPANDER_HPP_
1.3.4