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
25
namespace
fawkes
{
26
#if 0
/* just to make Emacs auto-indent happy */
27
}
28
#endif
29
30
/** @class WebPageFooterGenerator <webview/page_footer_generator.h>
31
* Interface for HTML footer generator.
32
* A page footer generator has the task to generate the HTML code that is
33
* appended to each standard page. This is a possible footer or navigational
34
* additions. A footer generator must also generate the closing
35
* </body></html> tags.
36
* @author Tim Niemueller
37
*
38
* @fn std::string WebPageFooterGenerator::html_footer() = 0
39
* Generate HTML footer.
40
* @return footer HTML code, including </body></html>
41
*/
42
43
/** Virtual empty destructor. */
44
WebPageFooterGenerator::~WebPageFooterGenerator
()
45
{
46
}
47
48
}
// end namespace fawkes
fawkes::WebPageFooterGenerator::~WebPageFooterGenerator
virtual ~WebPageFooterGenerator()
Virtual empty destructor.
Definition:
page_footer_generator.cpp:44
fawkes
Fawkes library namespace.
src
libs
webview
page_footer_generator.cpp
Generated by
1.8.13