3 namespace tizen_browser
8 std::string FeedItem::getDescription() const {
12 void FeedItem::setDescription(const std::string& description) {
13 this->m_description = description;
16 int FeedItem::getId() const {
20 void FeedItem::setId(int id) {
24 boost::posix_time::ptime FeedItem::getPubDate() const {
28 void FeedItem::setPubDate(const boost::posix_time::ptime& pubDate) {
29 this->m_pubDate = pubDate;
32 std::string FeedItem::getTitle() const {
36 void FeedItem::setTitle(const std::string& title) {
37 this->m_title = title;
40 std::string FeedItem::getUrl() const {
44 void FeedItem::setUrl(const std::string& url) {
48 std::shared_ptr<BrowserImage> FeedItem::getFavicon()
53 void FeedItem::setFavicon(std::shared_ptr<BrowserImage> favicon)
55 this->m_favicon = favicon;