/ Returns the type of the Value's value. */ /
| 1544 | /* Returns the type of the Value's value. */ |
| 1545 | /***********************************************************************/ |
| 1546 | JTYP JVALUE::GetValType(void) |
| 1547 | { |
| 1548 | if (DataType == TYPE_JSON) |
| 1549 | return Jsp->GetType(); |
| 1550 | //else if (Val) |
| 1551 | // return Val->Type; |
| 1552 | else |
| 1553 | return DataType; |
| 1554 | |
| 1555 | } // end of GetValType |
| 1556 | |
| 1557 | /***********************************************************************/ |
| 1558 | /* Return the Value's Object value. */ |
no test coverage detected