我正在使用 openDDS pub/sun 中间件。我已经使用复杂的结构测试了 openDDS。
例如。
typedef struct DSMD
{
string a;
long b;
} StandByModeData;
struct DSMCD{
string SessionId;
DSMD Data;
};
但现在我有不同的结构。这是通过 openDDS 传递的。
如何在 idl 结构中使用模板?
我需要这样的东西。
template <struct T>
struct array {
T typr;
};