00001 #ifndef __HREF_H__ 00002 #define __HREF_H__ 00003 00004 #include <string> 00005 00006 namespace freedaisy { 00008 class Href { 00009 public: 00010 Href() {} 00011 Href(std::string str); 00014 std::string getFile(); 00016 std::string getAnchor(); 00017 00019 Href operator=(std::string orig); 00020 00022 std::string getString(); 00023 protected: 00024 std::string _str; 00025 }; 00026 } 00027 00028 #endif
1.4.6