There was an error while loading. Please reload this page.
1 parent f00cf82 commit 899f895Copy full SHA for 899f895
1 file changed
src/simu5g/stack/phy/packet/LteAirFrame.msg
@@ -17,21 +17,15 @@ cplusplus {{
17
18
namespace simu5g;
19
20
-struct RemoteUnitPhyDataVector
21
-{
22
- @existingClass;
23
- @opaque;
24
- //@toString(.str());
25
-}
26
-
27
//
28
// This is LteAirFrame.
29
30
packet LteAirFrame extends AirFrame {
31
@customize(true);
32
- RemoteUnitPhyDataVector remoteUnitPhyDataVector;
+ RemoteUnitPhyData remoteUnitPhyDataVector[] @nopack;
33
}
34
35
cplusplus(LteAirFrame) {{
36
- void addRemoteUnitPhyDataVector(const RemoteUnitPhyData& data) { remoteUnitPhyDataVector.push_back(data); }
+ public:
+ void addRemoteUnitPhyDataVector(const RemoteUnitPhyData& data) { appendRemoteUnitPhyDataVector(data); }
37
}}
0 commit comments