| 2535 | |
| 2536 | |
| 2537 | char* |
| 2538 | TAO_DDS_DCPSInfo_i::dump_to_string() |
| 2539 | { |
| 2540 | std::string dump; |
| 2541 | #if !defined (OPENDDS_INFOREPO_REDUCED_FOOTPRINT) |
| 2542 | std::string indent (" "); |
| 2543 | |
| 2544 | for (DCPS_IR_Domain_Map::const_iterator dm = domains_.begin(); |
| 2545 | dm != domains_.end(); |
| 2546 | dm++) |
| 2547 | { |
| 2548 | dump += dm->second->dump_to_string(indent, 0); |
| 2549 | } |
| 2550 | #endif // !defined (OPENDDS_INFOREPO_REDUCED_FOOTPRINT) |
| 2551 | return CORBA::string_dup(dump.c_str()); |
| 2552 | |
| 2553 | } |
| 2554 | |
| 2555 | void TAO_DDS_DCPSInfo_i::cleanup_all_built_in_topics() |
| 2556 | { |
no test coverage detected