INTEGRATION: CWS adc9 (1.4.6); FILE MERGED

2004/11/09 17:15:57 np 1.4.6.1: #i34735#
This commit is contained in:
Oliver Bolte 2004-11-15 12:36:49 +00:00
parent ec58b6ae0a
commit 18d69ff6de
2 changed files with 31 additions and 17 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: adc_cl.cxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: rt $ $Date: 2004-07-12 15:33:46 $
* last change: $Author: obo $ $Date: 2004-11-15 13:36:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -83,8 +83,8 @@ CommandLine * CommandLine::pTheInstance_ = 0;
const char * const C_sUserGuide =
"\n\n\n"
" Use of Autodoc\n"
" --------------\n"
" General Use of Autodoc\n"
" ----------------------\n"
"\n"
" Example for C++:\n"
"\n"
@ -92,7 +92,7 @@ const char * const C_sUserGuide =
" -p <ProjName> <ProjectRootDirectory>\n"
" -t <SourceDir_relativeToProjectRoot>\n"
"\n"
" There may be several Projects specified by -p.\n"
" There may be several projects specified by -p.\n"
"\n"
"\n"
" Example for IDL:\n"
@ -100,10 +100,24 @@ const char * const C_sUserGuide =
" -html <OutputDirectory> -name \"UDK 3.x anything\" -lg idl\n"
" -t <SourceDir1> <SourceDir2>\n"
"\n"
"\n"
" For both languages, instead of or in addition to -t may be\n"
" used -d (no subdirectories) or -f (just one file). There can\n"
" be multiple arguments after each of these options (-t -d -f).\n";
" be multiple arguments after each of these options (-t -d -f).\n"
"\n"
"\n"
" Replacing @since Tag Content\n"
" ----------------------------\n"
"\n"
" In both languages you can give a transformation file to replace\n"
" entries in @since tags by different entries.\n"
" This file is given by the option\n"
" -sincefile <TransformationFilePath>\n"
" This option has to appear between the -html and the -lg option.\n"
" Example:\n"
" -html <OutputDirectory> -sincefile replacesince.txt\n"
" -name \"UDK 3.x anything\" -lg idl -t <SourceDir>\n"
"\n"
"\n";
#if 0 // FUTURE
@ -319,18 +333,17 @@ CommandLine::Get_()
return *pTheInstance_;
}
bool
CommandLine::Display_SinceTag() const
CommandLine::DoesTransform_SinceTag() const
{
return pSinceTransformator->DoesTransform();
}
bool
CommandLine::Strip_SinceTagText( String & io_sSinceTagValue ) const
{
return pSinceTransformator->StripSinceTagText(io_sSinceTagValue);
}
//bool
//CommandLine::Strip_SinceTagText( String & io_sSinceTagValue ) const
//{
// return pSinceTransformator->StripSinceTagText(io_sSinceTagValue);
//}
const String &
CommandLine::DisplayOf_SinceTagValue( const String & i_sVersionNumber ) const

View file

@ -2,9 +2,9 @@
*
* $RCSfile: adc_cmd_parse.cxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: rt $ $Date: 2004-07-12 15:34:00 $
* last change: $Author: obo $ $Date: 2004-11-15 13:36:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -131,7 +131,8 @@ S_LanguageInfo::do_Init( opt_iter & it,
break;
case java: aExtensions.push_back( C_FileEnding_java );
break;
// default: do nothing.
default: // do nothing.
;
}
++it; // Cur is next option.