00001 // Copyright (C) 2006 Alexis ROBERT 00002 00003 #ifndef __SMIL_H__ 00004 #define __SMIL_H__ 00005 00006 #include "xmldoc.h" 00007 #include "par.h" 00008 00009 namespace freedaisy { 00010 class SMIL : public XMLDoc { 00011 public: 00013 SMIL(); 00015 00018 SMIL(std::string filename) : XMLDoc(filename) {} 00020 void createDoc(); 00023 Par findAnchor(std::string id); 00024 }; 00025 } 00026 00027 #endif