blackbox support - convert to string representation
| 361 | |
| 362 | /// blackbox support - convert to string representation |
| 363 | char* countedref_String(blackbox */*b*/, void* ptr) |
| 364 | { |
| 365 | if (ptr == NULL) return omStrDup(sNoName_fe); |
| 366 | return (*CountedRef::cast(ptr))->String(); |
| 367 | } |
| 368 | |
| 369 | /// blackbox support - copy element |
| 370 | void* countedref_Copy(blackbox*/*b*/, void* ptr) |