diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-11-05 20:16:29 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-11-05 20:16:29 +0000 |
commit | 1c6156c563d16584b69f6c37a3d77f1eb130421b (patch) | |
tree | a067f85de63b4b9e0d89b9a895208235a8015b39 | |
parent | Improve error message when getTuner fails to open/tune a tuner (diff) | |
download | p2pvr-1c6156c563d16584b69f6c37a3d77f1eb130421b.tar.bz2 p2pvr-1c6156c563d16584b69f6c37a3d77f1eb130421b.tar.xz p2pvr-1c6156c563d16584b69f6c37a3d77f1eb130421b.zip |
Internal models can be local
-rw-r--r-- | p2pvr/daemon/p2pvr-int.ice | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/p2pvr/daemon/p2pvr-int.ice b/p2pvr/daemon/p2pvr-int.ice index a4f2311..9a99239 100644 --- a/p2pvr/daemon/p2pvr-int.ice +++ b/p2pvr/daemon/p2pvr-int.ice @@ -2,7 +2,7 @@ #include <dvbsi.ice> module P2PVR { - class ScheduleCandidate { + local class ScheduleCandidate { string What; int EventUid; int TransportStreamId; @@ -11,10 +11,10 @@ module P2PVR { int Priority; int ScheduleId; }; - sequence<ScheduleCandidate> ScheduleCandidates; + local sequence<ScheduleCandidate> ScheduleCandidates; - sequence<DVBSI::SatelliteDelivery> SatelliteDeliverySeq; - sequence<DVBSI::CableDelivery> CableDeliverySeq; - sequence<DVBSI::TerrestrialDelivery> TerrestrialDeliverySeq; + local sequence<DVBSI::SatelliteDelivery> SatelliteDeliverySeq; + local sequence<DVBSI::CableDelivery> CableDeliverySeq; + local sequence<DVBSI::TerrestrialDelivery> TerrestrialDeliverySeq; }; |