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