00001 #ifndef __SMIL_H__ 00002 #define __SMIL_H__ 00003 00004 #include "xmldoc.h" 00005 #include "par.h" 00006 00007 namespace freedaisy { 00008 class SMIL : public XMLDoc { 00009 public: 00011 SMIL(); 00013 00016 SMIL(std::string filename) : XMLDoc(filename) {} 00018 void createDoc(); 00021 Par findAnchor(std::string id); 00022 }; 00023 } 00024 00025 #endif
1.4.6