mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-10 12:25:50 +03:00
13 lines
336 B
C++
Executable File
13 lines
336 B
C++
Executable File
#include <TCollection_AsciiString.hxx>
|
|
|
|
static TCollection_AsciiString XSDRAW_CommandPart
|
|
(Standard_Integer argc, const char** argv, const Standard_Integer argf)
|
|
{
|
|
TCollection_AsciiString res;
|
|
for (Standard_Integer i = argf; i < argc; i ++) {
|
|
if (i > argf) res.AssignCat(" ");
|
|
res.AssignCat (argv[i]);
|
|
}
|
|
return res;
|
|
}
|