/ Return the Value's Object value. */ /
| 1558 | /* Return the Value's Object value. */ |
| 1559 | /***********************************************************************/ |
| 1560 | PJOB JVALUE::GetObject(void) |
| 1561 | { |
| 1562 | if (DataType == TYPE_JSON && Jsp->GetType() == TYPE_JOB) |
| 1563 | return (PJOB)Jsp; |
| 1564 | |
| 1565 | return NULL; |
| 1566 | } // end of GetObject |
| 1567 | |
| 1568 | /***********************************************************************/ |
| 1569 | /* Return the Value's Array value. */ |
no test coverage detected