diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:02:56 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:02:56 +0000 |
commit | 7c914d49ea58f3c0f8b2ec9d7a5e2f71e983cf91 (patch) | |
tree | 2ec7e09b791e863d8b0e4c729c9d6ae673f23907 | |
parent | d9a733c63e7267c79de56ee346a725a89fcfbc6e (diff) |
INTEGRATION: CWS adc18 (1.1.2); FILE ADDED
2007/10/18 14:56:54 np 1.1.2.1: #i81775#
-rw-r--r-- | autodoc/inc/ary/doc/ht/dht_link2param.hxx | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/autodoc/inc/ary/doc/ht/dht_link2param.hxx b/autodoc/inc/ary/doc/ht/dht_link2param.hxx new file mode 100644 index 000000000000..5fcc7f28b82d --- /dev/null +++ b/autodoc/inc/ary/doc/ht/dht_link2param.hxx @@ -0,0 +1,79 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: dht_link2param.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: hr $ $Date: 2007-11-02 15:02:56 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +#ifndef ARY_DHT_LINK2PARAM_HXX +#define ARY_DHT_LINK2PARAM_HXX + +// BASE CLASSES +#include <ary/doc/ht/dht_interpreter.hxx> + +// USED SERVICES + + + + +namespace ary +{ +namespace doc +{ +namespace ht +{ + class Component; + + +/** Interpretes a link to a parameter of the just described function. +*/ +class Link2Param : public Interpreter +{ + public: + virtual ~Link2Param(); + + static Component Create_Component_( + const String & i_parameterName, + const String & i_display ); + private: + // Interface Interpreter: + virtual void do_Accept( + Processor & io_processor, + const String & i_data ) const; +}; + + + + +} // namespace ht +} // namespace doc +} // namespace ary +#endif |