1 /*
2  * The Doomsday Engine Project -- libcore
3  *
4  * Copyright © 2009-2017 Jaakko Keränen <jaakko.keranen@iki.fi>
5  *
6  * @par License
7  * LGPL: http://www.gnu.org/licenses/lgpl.html
8  *
9  * <small>This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or (at your
12  * option) any later version. This program is distributed in the hope that it
13  * will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
15  * General Public License for more details. You should have received a copy of
16  * the GNU Lesser General Public License along with this program; if not, see:
17  * http://www.gnu.org/licenses</small>
18  */
19 
20 #include "de/Feed"
21 
22 namespace de {
23 
Feed()24 Feed::Feed()
25 {}
26 
~Feed()27 Feed::~Feed()
28 {}
29 
createFile(String const &)30 File *Feed::createFile(String const &/*name*/)
31 {
32     // By default feeds can't create files.
33     return 0;
34 }
35 
destroyFile(String const &)36 void Feed::destroyFile(String const &/*name*/)
37 {}
38 
newSubFeed(String const &)39 Feed *Feed::newSubFeed(String const &/*name*/)
40 {
41     // By default feeds can't create subfeeds.
42     return 0;
43 }
44 
45 } // namespace de
46