| 50 | } while (0); |
| 51 | |
| 52 | void append(DDS::PropertySeq& props, const char* name, const char* value) |
| 53 | { |
| 54 | const DDS::Property_t prop = {name, value, false /*propagate*/}; |
| 55 | const unsigned int len = props.length(); |
| 56 | props.length(len + 1); |
| 57 | props[len] = prop; |
| 58 | } |
| 59 | |
| 60 | int run_test(int argc, ACE_TCHAR *argv[], Args& my_args) |
| 61 | { |