Change the log level INFO to DEBUG
[profile/tv/apps/web/browser.git] / core / Tools / FeedItem.cpp
1 #include "FeedItem.h"
2
3 namespace tizen_browser
4 {
5 namespace tools
6 {
7
8 std::string FeedItem::getDescription() const {
9     return m_description;
10 }
11
12 void FeedItem::setDescription(const std::string& description) {
13     this->m_description = description;
14 }
15
16 int FeedItem::getId() const {
17     return m_id;
18 }
19
20 void FeedItem::setId(int id) {
21     this->m_id = id;
22 }
23
24 boost::posix_time::ptime FeedItem::getPubDate() const {
25     return m_pubDate;
26 }
27
28 void FeedItem::setPubDate(const boost::posix_time::ptime& pubDate) {
29     this->m_pubDate = pubDate;
30 }
31
32 std::string FeedItem::getTitle() const {
33     return m_title;
34 }
35
36 void FeedItem::setTitle(const std::string& title) {
37     this->m_title = title;
38 }
39
40 std::string FeedItem::getUrl() const {
41     return m_url;
42 }
43
44 void FeedItem::setUrl(const std::string& url) {
45     this->m_url = url;
46 }
47
48 std::shared_ptr<BrowserImage> FeedItem::getFavicon()
49 {
50     return m_favicon;
51 }
52
53 void FeedItem::setFavicon(std::shared_ptr<BrowserImage> favicon)
54 {
55     this->m_favicon = favicon;
56 }
57
58 }
59 }