diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:58:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:58:25 +0000 |
commit | 3b5756bd28d72d379cf6ca96db0b33e6180ab43a (patch) | |
tree | baab4a16645ecd669365ef9ec88559e3b7704770 | |
parent | 7fb5717577ce09e5d803d36f20f0a7b1279576da (diff) |
INTEGRATION: CWS adc18 (1.5.2); FILE MERGED
2007/10/18 13:40:05 np 1.5.2.1: #i81775#
-rw-r--r-- | autodoc/source/ary/idl/it_sequence.cxx | 18 | ||||
-rw-r--r-- | autodoc/source/ary/idl/it_xnameroom.cxx | 29 |
2 files changed, 24 insertions, 23 deletions
diff --git a/autodoc/source/ary/idl/it_sequence.cxx b/autodoc/source/ary/idl/it_sequence.cxx index 09bd60bf..166d9fa0 100644 --- a/autodoc/source/ary/idl/it_sequence.cxx +++ b/autodoc/source/ary/idl/it_sequence.cxx @@ -4,9 +4,9 @@ * * $RCSfile: it_sequence.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2007-09-18 13:39:22 $ + * last change: $Author: hr $ $Date: 2007-11-02 15:57:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,6 +38,7 @@ // NOT FULLY DEFINED SERVICES +#include <cosv/tpl/processor.hxx> #include <ary/idl/i_gate.hxx> #include <ary/idl/ip_type.hxx> #include "i_strconst.hxx" @@ -59,16 +60,16 @@ Sequence::~Sequence() { } -void -Sequence::do_Visit( Host & ) const +ClassId +Sequence::get_AryClass() const { - // yet unused. + return class_id; } -RCid -Sequence::inq_ClassId() const +void +Sequence::do_Accept( csv::ProcessorIfc & io_processor ) const { - return class_id; + csv::CheckedCall(io_processor, *this); } void @@ -92,4 +93,3 @@ Sequence::inq_Get_Text( StringVector & o_module, } // namespace idl } // namespace ary - diff --git a/autodoc/source/ary/idl/it_xnameroom.cxx b/autodoc/source/ary/idl/it_xnameroom.cxx index 1555f434..0899399f 100644 --- a/autodoc/source/ary/idl/it_xnameroom.cxx +++ b/autodoc/source/ary/idl/it_xnameroom.cxx @@ -4,9 +4,9 @@ * * $RCSfile: it_xnameroom.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2007-09-18 13:39:57 $ + * last change: $Author: hr $ $Date: 2007-11-02 15:58:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,7 +38,8 @@ // NOT FULLY DEFINED SERVICES -#include <cosv/template/tpltools.hxx> +#include <cosv/tpl/processor.hxx> +#include <cosv/tpl/tpltools.hxx> #include <ary/idl/i_gate.hxx> #include <ary/idl/ip_type.hxx> #include "i_strconst.hxx" @@ -50,6 +51,7 @@ namespace ary namespace idl { + ExplicitNameRoom::ExplicitNameRoom() : aImpl() { @@ -65,25 +67,24 @@ ExplicitNameRoom::~ExplicitNameRoom() { } -void -ExplicitNameRoom::do_Visit( Host & - ) const +ClassId +ExplicitNameRoom::get_AryClass() const { - // yet unused. + return class_id; } -RCid -ExplicitNameRoom::inq_ClassId() const +void +ExplicitNameRoom::do_Accept( csv::ProcessorIfc & io_processor ) const { - return class_id; + csv::CheckedCall(io_processor, *this); } void ExplicitNameRoom::inq_Get_Text( StringVector & o_module, - String & , - Ce_id & , - int & , - const Gate & ) const + String & , // o_name + Ce_id & , // o_nRelatedCe + int & , // o_nSequemceCount + const Gate & ) const // i_rGate { StringVector::const_iterator it = NameChain_Begin(); if ( it != NameChain_End() |