00001 00002 #include "cafe/FileExpander.hpp" 00003 00004 namespace cafe { 00005 00006 FileExpander::FileExpander(const char *url) 00007 : _url(url) 00008 { 00009 } 00010 00011 std::string FileExpander::nextFile() 00012 { 00013 std::string result(_url); 00014 _url = ""; 00015 return result; 00016 } 00017 00018 } 00019 00020 ClassImp(cafe::FileExpander)
1.3.4