Kaydet (Commit) b3f2d2fd authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS adc5 (1.2.24); FILE MERGED

2003/04/15 17:29:24 np 1.2.24.4: autodoc version change
2003/04/15 16:06:19 np 1.2.24.3: #108787#
2003/04/15 16:03:57 np 1.2.24.2: #108787#
2003/04/15 16:01:17 np 1.2.24.1: #108787#
üst 1eef6d1e
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: adc_cl.cxx,v $ * $RCSfile: adc_cl.cxx,v $
* *
* $Revision: 1.2 $ * $Revision: 1.3 $
* *
* last change: $Author: np $ $Date: 2002-11-14 18:02:00 $ * last change: $Author: hr $ $Date: 2003-04-15 18:45:35 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -293,7 +293,7 @@ CommandLine::~CommandLine() ...@@ -293,7 +293,7 @@ CommandLine::~CommandLine()
int int
CommandLine::Run() const CommandLine::Run() const
{ {
Cout() << "\nAutodoc version 2.2.1" Cout() << "\nAutodoc version 2.2.2"
<< "\n---------------------" << "\n---------------------"
<< "\n" << Endl(); << "\n" << Endl();
...@@ -419,6 +419,7 @@ CommandLine::load_IncludedCommands( StringVector & out, ...@@ -419,6 +419,7 @@ CommandLine::load_IncludedCommands( StringVector & out,
aFile.close(); aFile.close();
bool bInToken = false; bool bInToken = false;
StreamLock aTransmit(200);
for ( ; NOT aIncludedCommands.IsFinished(); aIncludedCommands.MoveOn() ) for ( ; NOT aIncludedCommands.IsFinished(); aIncludedCommands.MoveOn() )
{ {
if (bInToken) if (bInToken)
...@@ -430,7 +431,13 @@ CommandLine::load_IncludedCommands( StringVector & out, ...@@ -430,7 +431,13 @@ CommandLine::load_IncludedCommands( StringVector & out,
bInToken = false; bInToken = false;
if ( strncmp(pToken, "-I:", 3) != 0 ) if ( strncmp(pToken, "-I:", 3) != 0 )
out.push_back(String(pToken)); {
aTransmit().seekp(0);
aTransmit() << pToken;
aTransmit().replace_all('\\', *csv::ploc::Delimiter());
aTransmit().replace_all('/', *csv::ploc::Delimiter());
out.push_back(String(aTransmit().c_str()));
}
else else
load_IncludedCommands(out, pToken+3); load_IncludedCommands(out, pToken+3);
} }
...@@ -443,6 +450,7 @@ CommandLine::load_IncludedCommands( StringVector & out, ...@@ -443,6 +450,7 @@ CommandLine::load_IncludedCommands( StringVector & out,
bInToken = true; bInToken = true;
} }
} // endif (bInToken) else } // endif (bInToken) else
} // end while() } // end while()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment