IntValue interprets the attribute as an integer, and returns the value. If the value isn't an integer, 0 will be returned. There is no error checking; use QueryIntValue() if you need error checking. */
| 1079 | use QueryIntValue() if you need error checking. |
| 1080 | */ |
| 1081 | int IntValue() const { |
| 1082 | int i=0; |
| 1083 | QueryIntValue( &i ); |
| 1084 | return i; |
| 1085 | } |
| 1086 | /// Query as an unsigned integer. See IntValue() |
| 1087 | unsigned UnsignedValue() const { |
| 1088 | unsigned i=0; |
nothing calls this directly
no outgoing calls
no test coverage detected