Apply GPLv3 to all sources
[Yara.git] / lib / Yara / Details / ChannelInfo.h
blob74e6ce609027f17e9213dc46b33a8455035b3bd1
1 /*
2 * Yara: Yet Another RSS Aggregator
3 * Copyright (C) 2007 Ronald Landheer-Cieslak
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef _yara_details_channelinfo_h
18 #define _yara_details_channelinfo_h
20 #include <boost/shared_ptr.hpp>
21 #include "ImageInfo.h"
22 #include "Language.h"
24 namespace Yara
26 namespace Details
28 struct ChannelInfo
30 ChannelInfo()
31 : language_(unknown__)
32 { /* no-op */ }
34 std::string title_;
35 std::string link_;
36 std::string description_;
37 Details::Language language_;
38 std::string copyright_;
39 std::string managing_editor_;
40 std::string webmaster_;
41 boost::shared_ptr< ImageInfo > image_;
46 #endif