// Copyright(c) 2006 to 2021 ZettaScale Technology and others
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
// v. 1.0 which is available at
// http://www.eclipse.org/org/documents/edl-v10.php.
//
// SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
module MinXcdrVersion {
@topic @final
struct t {
long f1;
};
@topic @final
struct t_nested {
t f1;
};
@topic @final
struct t_inherit : t {
long f2;
};
@topic @final
struct t_opt {
@optional long f1;
};
@topic @final
struct t_ext {
@external long f1;
};
@topic @appendable
struct t_append {
long f1;
};
@topic @appendable
union t_append_u switch (long) {
case 1: long f1;
};
@topic @final
union t_u_nested_append switch (long) {
case 1: t_append f1;
};
@topic @final
struct t_append_nested {
t_append f1;
};
@topic @final
struct t_append_nested_opt {
@optional t_append f1;
};
@topic @final
struct t_append_seq {
@optional sequence<t_append> f1;
};
@topic @final
struct t_append_bseq {
@optional sequence<t_append, 3> f1;
};
@topic @final
struct t_append_arr {
@optional t_append f1[2];
};
@topic @appendable
struct t_append_nested_u {
t_append_u f1;
};
@topic @final
struct t_append_opt {
@optional t_append f1;
};
@topic @final
struct t_append_opt_u {
@optional t_append_u f1;
};
@topic @mutable
struct t_mut {
long f1;
};
@topic @final
struct t_nested_mut {
t_mut f1;
};
@topic @final
struct t_nested_opt {
t_opt f1;
};
};