1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0024685: Coding Rules - "Draw:Atoi" misprints in the document

This commit is contained in:
kgv 2014-03-04 19:40:03 +04:00 committed by bugmaster
parent 197ac94e72
commit f8eb9b179e

View File

@ -930,11 +930,11 @@ myCommand -flag1 value1 value2 -flag2 value3
### Arguments parser
- Integer values should be read using *Draw:Atoi()* function.
- Real values should be read using *Draw:Atof()* function.
- Integer values should be read using *Draw::Atoi()* function.
- Real values should be read using *Draw::Atof()* function.
- Flags names should be checked in case insensitive manner.
Functions *Draw:Atof()* and *Draw:Atoi()* support expressions and read values in C-locale.
Functions *Draw::Atof()* and *Draw::Atoi()* support expressions and read values in C-locale.
~~~~~{.cpp}
Standard_Real aPosition[3] = {0.0, 0.0, 0.0};