Change the log level INFO to DEBUG
[profile/tv/apps/web/browser.git] / core / Tools / FeedChannel.cpp
1 #include "FeedChannel.h"
2
3 namespace tizen_browser{
4 namespace tools{
5
6 std::string FeedChannel::getAuthor() const {
7     return m_author;
8 }
9
10 void FeedChannel::setAuthor(const std::string& author) {
11     this->m_author = author;
12 }
13
14 std::string FeedChannel::getDescription() const {
15     return m_description;
16 }
17
18 void FeedChannel::setDescription(const std::string& description) {
19     this->m_description = description;
20 }
21
22 FeedItemList FeedChannel::getItems() const {
23     return m_items;
24 }
25
26 void FeedChannel::setItems(const FeedItemList& items) {
27     this->m_items = items;
28 }
29
30 void FeedChannel::addItem(std::shared_ptr<FeedItem> item)
31 {
32     this->m_items.push_back(item);
33 }
34
35 boost::posix_time::ptime FeedChannel::getLastBuildDate() const {
36     return m_lastBuildDate;
37 }
38
39 void FeedChannel::setLastBuildDate(const boost::posix_time::ptime& lastBuildDate) {
40     this->m_lastBuildDate = lastBuildDate;
41 }
42
43 std::string FeedChannel::getTitle() const {
44     return m_title;
45 }
46
47 void FeedChannel::setTitle(const std::string& title) {
48     this->m_title = title;
49 }
50
51 std::string FeedChannel::getUrl() const {
52     return m_url;
53 }
54
55 void FeedChannel::setUrl(const std::string& url) {
56     this->m_url = url;
57 }
58
59 std::string FeedChannel::getRealUrl() const {
60     return m_realUrl;
61 }
62
63 void FeedChannel::setRealUrl(const std::string& url) {
64     this->m_realUrl = url;
65 }
66
67 std::shared_ptr<BrowserImage> FeedChannel::getFavicon()
68 {
69     return m_favicon;
70 }
71
72 void FeedChannel::setFavicon(std::shared_ptr<BrowserImage> favicon)
73 {
74     this->m_favicon = favicon;
75 }
76
77 }
78 }