diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-02-20 15:09:59 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-02-20 15:09:59 +0100 |
commit | b09c89b9edda0abe2ab69df5c0d0723db43ad945 (patch) | |
tree | 2c5ac76e6b55532d2fde3f89a9f1119a7674867b /src/utils.h | |
parent | 039f82969aff73749ff50e9d65950a85509fde0c (diff) | |
download | dabmux-b09c89b9edda0abe2ab69df5c0d0723db43ad945.tar.gz dabmux-b09c89b9edda0abe2ab69df5c0d0723db43ad945.tar.bz2 dabmux-b09c89b9edda0abe2ab69df5c0d0723db43ad945.zip |
Use shared_ptr instead of component and subchannel pointers
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.h b/src/utils.h index 995e8b6..c9beb8e 100644 --- a/src/utils.h +++ b/src/utils.h @@ -3,7 +3,7 @@ 2011, 2012 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2018 Matthias P. Braendli, matthias.braendli@mpb.li This file contains a set of utility functions that are used to show @@ -70,15 +70,15 @@ void printOutputs(const std::vector<std::shared_ptr<DabOutput> >& outputs); void printServices(const std::vector<std::shared_ptr<DabService> >& services); -void printComponents(std::vector<DabComponent*>& components); +void printComponents(const vec_sp_component& components); -void printSubchannels(std::vector<DabSubchannel*>& subchannels); +void printSubchannels(const vec_sp_subchannel& subchannels); /* Print information about the whole ensemble */ void printEnsemble(const std::shared_ptr<dabEnsemble>& ensemble); /* Print detailed component information */ -void printComponent(DabComponent* component); +void printComponent(const std::shared_ptr<DabComponent>& component); long hexparse(const std::string& input); |