summaryrefslogtreecommitdiff
path: root/autodoc/inc/autodoc/dsp_html_std.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-19 00:02:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-19 08:26:52 +0100
commit8419668ea809036e734201770ff7a5a778509cce (patch)
tree36e13f9e3f9656faef0065f4c9205f37f432afc1 /autodoc/inc/autodoc/dsp_html_std.hxx
parent18a7f72bc2814b0754d1a380182063438847e08d (diff)
Remove obsolete autodoc C++ functionality.
Diffstat (limited to 'autodoc/inc/autodoc/dsp_html_std.hxx')
-rw-r--r--autodoc/inc/autodoc/dsp_html_std.hxx125
1 files changed, 0 insertions, 125 deletions
diff --git a/autodoc/inc/autodoc/dsp_html_std.hxx b/autodoc/inc/autodoc/dsp_html_std.hxx
index 78d75efe7e23..b674b2651dda 100644
--- a/autodoc/inc/autodoc/dsp_html_std.hxx
+++ b/autodoc/inc/autodoc/dsp_html_std.hxx
@@ -33,10 +33,6 @@
namespace ary
{
- namespace cpp
- {
- class Gate;
- }
namespace idl
{
class Gate;
@@ -52,127 +48,6 @@ namespace display
namespace autodoc
{
-
-class HtmlDisplay_UdkStd
-{
- public:
- virtual ~HtmlDisplay_UdkStd() {}
-
- /** Displays the names of several C++ code entities within the
- given namespace (or the global namespace as default). All
- subnamespaces are included.
-
- Output has following format:
-
- =========================================================================
- OutputDirectory
- index.html
- def-all.html
- prj\
- sal\
- index.html // Overview about project
-
- f-FileName[1,2,...] // Overview about file
- f-OtherFileName[1,2,...]
- ...
- def-FileName[1,2,...] // #defines and macros in file
- def-OtherFileName[1,2,...]
- ...
- rtl\
- ...
- cppu\
- ...
- cppuhelper\
- ...
- ...
- ix\
- ix-a.html
- ix-b.html
- ...
- ix-z.html
- ix-_.html
- ix-other.html
-
- cpp\
- index.html // Overview about global namespace
-
- Namespace_A\
- Namespace_C\
- index.html // Overview about namespace C
- ...
- ...
-
- index.html // Overview about namespace A
-
- c-ClassName_X.html // Description of class
- ...
- e-EnumName.html // Description of enum
- ...
- t-TypedefName.html // Description of typedef
- ...
- o-Filename.html // Descriptions of operations in this file in this namespace
- ...
- d-Filename.html // Descriptions of data in this file in this namespace
- ...
-
- ClassName_X\
- c-ClassName_Y.html
- e-EnumName.html
- t-TypedefName.html
- o.html // Descriptions of operations in class X
- d.html // Descriptions of data in class X
-
- ClassName_Y\
- ...
- ...
-
- idl\
- ...
- java\
- ...
- =========================================================================
-
-
- @param i_sOutputDirectory
- Directory for output. Path must be given in correct
- syntax for the actual operating system without final
- path delimiter. If this is 0 or "", the current
- working directory is chosen.
- @param i_rAryGate
- The access to the Autodoc Repository.
- @param i_rLayout
- Gives parameters for the appearance of the HTML output.
- @param i_pProjectList
- If this is != 0, then only code entities which are declared
- in this projects are displayed.
- */
- void Run(
- const char * i_sOutputDirectory,
- const ary::cpp::Gate &
- i_rAryGate,
- const display::CorporateFrame &
- i_rLayout );
- private:
- virtual void do_Run(
- const char * i_sOutputDirectory,
- const ary::cpp::Gate &
- i_rAryGate,
- const display::CorporateFrame &
- i_rLayout ) = 0;
-};
-
-// IMPLEMENTATION
-
-inline void
-HtmlDisplay_UdkStd::Run( const char * i_sOutputDirectory,
- const ary::cpp::Gate & i_rAryGate,
- const display::CorporateFrame & i_rLayout )
-{
- do_Run( i_sOutputDirectory, i_rAryGate, i_rLayout );
-}
-
-
-
// class HtmlDisplay_Idl_Ifc
class HtmlDisplay_Idl_Ifc