summaryrefslogtreecommitdiff
path: root/autodoc/source/display/inc/toolkit/htmlfactory.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/display/inc/toolkit/htmlfactory.hxx')
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfactory.hxx95
1 files changed, 0 insertions, 95 deletions
diff --git a/autodoc/source/display/inc/toolkit/htmlfactory.hxx b/autodoc/source/display/inc/toolkit/htmlfactory.hxx
deleted file mode 100644
index 8e70a1fc51ed..000000000000
--- a/autodoc/source/display/inc/toolkit/htmlfactory.hxx
+++ /dev/null
@@ -1,95 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef ADC_DISPLAY_HTMLFACTORY_HXX
-#define ADC_DISPLAY_HTMLFACTORY_HXX
-
-
-
-// USED SERVICES
- // BASE CLASSES
- // COMPONENTS
-#include "outputstack.hxx"
- // PARAMETERS
-#include <udm/xml/xmlitem.hxx>
-#include <udm/html/htmlitem.hxx>
-
-namespace Xml = ::csi::xml;
-namespace Html = ::csi::html;
-
-/** @resp
- Base class for HTML page creators (factories) for code entites or
- similar items.
-*/
-template <class ENV>
-class HtmlFactory
-{
- public:
- // INQUIRY
- ENV & Env() const { return *pEnv; }
- Xml::Element & CurOut() const { return aDestination.Out(); }
-
- // ACCESS
- OutputStack & Out() const { return aDestination; }
-
- protected:
- HtmlFactory(
- ENV & io_rEnv,
- Xml::Element * o_pOut = 0 )
- : pEnv(&io_rEnv) { if (o_pOut != 0) aDestination.Enter(*o_pOut); }
- ~HtmlFactory() {}
- private:
- // DATA
- ENV * pEnv;
- mutable OutputStack aDestination;
-};
-
-
-/** @resp
- Base class for HTML paragraph creators, which are to be put into
- a parent HTML element.
-*/
-class HtmlMaker
-{
- public:
-
- // INQUIRY
- Xml::Element & CurOut() const { return *pOut; }
-
- protected:
- HtmlMaker(
- Xml::Element & o_rOut )
- : pOut(&o_rOut) {}
- private:
- // DATA
- Xml::Element * pOut;
-};
-
-
-
-
-// IMPLEMENTATION
-
-
-
-
-#endif
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */