Fawkes API Fawkes Development Version
page_footer_generator.cpp
1
2/***************************************************************************
3 * footer_generator.cpp - Generator of page footer
4 *
5 * Created: Sun Aug 30 14:40:26 2009
6 * Copyright 2006-2009 Tim Niemueller [www.niemueller.de]
7 *
8 ****************************************************************************/
9
10/* This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Library General Public License for more details.
19 *
20 * Read the full text in the LICENSE.GPL file in the doc directory.
21 */
22
23#include <webview/page_footer_generator.h>
24
25namespace fawkes {
26
27/** @class WebPageFooterGenerator <webview/page_footer_generator.h>
28 * Interface for HTML footer generator.
29 * A page footer generator has the task to generate the HTML code that is
30 * appended to each standard page. This is a possible footer or navigational
31 * additions. A footer generator must also generate the closing
32 * &lt;/body&gt;&lt;/html&gt; tags.
33 * @author Tim Niemueller
34 *
35 * @fn std::string WebPageFooterGenerator::html_footer() = 0
36 * Generate HTML footer.
37 * @return footer HTML code, including &lt;/body&gt;&lt;/html&gt;
38 */
39
40/** Virtual empty destructor. */
42{
43}
44
45} // end namespace fawkes
virtual ~WebPageFooterGenerator()
Virtual empty destructor.
Fawkes library namespace.