INTEGRATION: CWS adc8 (1.3.54); FILE MERGED
2004/07/02 14:44:34 np 1.3.54.1: #i30967#
This commit is contained in:
parent
0bc192426f
commit
f7354d34a2
1 changed files with 24 additions and 8 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: hfi_tag.cxx,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
* $Revision: 1.4 $
|
||||
*
|
||||
* last change: $Author: vg $ $Date: 2003-06-10 11:34:03 $
|
||||
* last change: $Author: rt $ $Date: 2004-07-12 15:29:59 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -65,16 +65,19 @@
|
|||
|
||||
|
||||
// NOT FULLY DEFINED SERVICES
|
||||
#include <ary_i/d_token.hxx>
|
||||
#include <ary/idl/i_ce.hxx>
|
||||
#include <ary/idl/i_module.hxx>
|
||||
#include <ary_i/ci_text2.hxx>
|
||||
#include <ary_i/d_token.hxx>
|
||||
#include <toolkit/out_tree.hxx>
|
||||
#include <adc_cl.hxx>
|
||||
#include "hfi_typetext.hxx"
|
||||
#include "hi_ary.hxx"
|
||||
#include "hi_env.hxx"
|
||||
#include "hi_linkhelper.hxx"
|
||||
|
||||
|
||||
using ary::info::DocuTex2;
|
||||
|
||||
|
||||
inline void
|
||||
|
@ -159,16 +162,29 @@ HF_IdlTag::Display_ParameterAtTag( const csi::dsapi::DT_ParameterAtTag & i_rTag
|
|||
void
|
||||
HF_IdlTag::Display_SinceAtTag( const csi::dsapi::DT_SinceAtTag & i_rTag )
|
||||
{
|
||||
if ( i_rTag.Text().IsEmpty() )
|
||||
csv_assert(pTitleOut != 0);
|
||||
|
||||
if ( i_rTag.Text().IsEmpty()
|
||||
OR
|
||||
NOT autodoc::CommandLine::Get_().Display_SinceTag() )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Transform the value of the @since tag into the text to be displayed.
|
||||
String sDisplay =
|
||||
autodoc::CommandLine::Get_().DisplayOf_SinceTagValue(
|
||||
i_rTag.Text().TextOfFirstToken() );
|
||||
if (sDisplay.empty())
|
||||
return;
|
||||
|
||||
csv_assert( pTitleOut != 0 );
|
||||
*pTitleOut << "Since version";
|
||||
PutText_Out( i_rTag.Text() );
|
||||
*pTitleOut << "Since ";
|
||||
DocuTex2 aHelp;
|
||||
aHelp.AddToken(* new csi::dsapi::DT_TextToken(sDisplay));
|
||||
PutText_Out(aHelp);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//******************** HF_IdlShortDocu *********************/
|
||||
|
||||
HF_IdlShortDocu::HF_IdlShortDocu( Environment & io_rEnv,
|
||||
|
|
Loading…
Reference in a new issue