Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members   Related Pages  

Bookmark.hpp

Go to the documentation of this file.
00001 #ifndef BOOKMARK_H
00002 #define BOOKMARK_H
00003 
00004 #include "Node.hpp"
00005 
00006 #include <string>
00007 
00011 class Bookmark: public Node {
00012  public:
00017         Bookmark(const string& id, const string& path, const string& title,
00018                          const string& url, const string& desc,
00019                          const string& add_date);
00023         Bookmark(const Bookmark& n);
00024 
00028         string getUrl();
00029 
00033         void setUrl(const string& url);
00034 
00035  private:
00039         string _url;
00040 };
00041 
00042 #endif

Generated on Sun Jan 20 20:59:59 2002 for bkmd by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001