summaryrefslogtreecommitdiff
path: root/cpp/src/slice2html/Gen.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2008-10-17 17:03:17 +1000
committerMichi Henning <michi@zeroc.com>2008-10-17 17:03:17 +1000
commit96b1378f83bd3763dff2c911ec767d5560303992 (patch)
tree5e91bc51c1eb31e5edda8cee749e1629f8d35d54 /cpp/src/slice2html/Gen.h
parentChanged swish-e perl scripts to tolerate -IceTouch suffix and to avoid (diff)
downloadice-96b1378f83bd3763dff2c911ec767d5560303992.tar.bz2
ice-96b1378f83bd3763dff2c911ec767d5560303992.tar.xz
ice-96b1378f83bd3763dff2c911ec767d5560303992.zip
Squashed commit of the following:
commit eadbde83662d4b50398b03432ce5590484a3c867 Author: michi <michi@michi.local> Date: Fri Oct 17 17:01:26 2008 +1000 Fixed broken rendering of headers and footers with Safari.
Diffstat (limited to 'cpp/src/slice2html/Gen.h')
-rw-r--r--cpp/src/slice2html/Gen.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/slice2html/Gen.h b/cpp/src/slice2html/Gen.h
index 3709c515495..9a474e5f302 100644
--- a/cpp/src/slice2html/Gen.h
+++ b/cpp/src/slice2html/Gen.h
@@ -45,7 +45,7 @@ protected:
void openDoc(const ::std::string&, const std::string&, const std::string& = "", const std::string& = "");
void openDoc(const ContainedPtr&);
- void closeDoc();
+ void closeDoc(const std::string& = "");
void start(const ::std::string&, const ::std::string& = ::std::string());
void end();
@@ -70,6 +70,8 @@ protected:
static ::std::string getImageDir();
static ::std::string getLogoURL();
+ static ::std::string getFooter(const ::std::string&);
+
::IceUtilInternal::XMLOutput& _out;
static size_t _indexCount;
@@ -89,7 +91,6 @@ private:
static ::std::string readFile(const ::std::string&);
static void readFile(const ::std::string&, ::std::string&, ::std::string&);
static void getHeaders(const ::std::string&, ::std::string&, ::std::string&);
- static ::std::string getFooter(const ::std::string&);
::std::string _indexFooter;
const Files _files;
@@ -171,6 +172,7 @@ private:
void writeEntry(const ContainedPtr&);
+ ::std::string _footer;
ModuleList _modules;
ContainedList _symbols;
::IceUtilInternal::XMLOutput _out;