diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-21 22:53:23 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-21 22:53:23 +0100 |
commit | 863d9fe32fbff286d4c359d6a5c29184ed511866 (patch) | |
tree | fdcb2c34837848db7904eb7f73890da3ff18f6fb /src/utils.h | |
parent | 3f179d73b72c2fcb496e5bada79a782f5d722ffe (diff) | |
download | dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.gz dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.bz2 dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.zip |
Replace some boost shared_ptr by std ones
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h index 3a5cf1c..926fa3d 100644 --- a/src/utils.h +++ b/src/utils.h @@ -29,6 +29,7 @@ #define _UTILS_H #include <cstdio> +#include <memory> #include "MuxElements.h" time_t getDabTime(); @@ -50,7 +51,7 @@ void printUsageConfigfile(char *name, FILE* out = stderr); /* The following four utility functions display a * description of all outputs, services, components * resp. subchannels*/ -void printOutputs(std::vector<boost::shared_ptr<DabOutput> >& outputs); +void printOutputs(std::vector<std::shared_ptr<DabOutput> >& outputs); void printServices(const std::vector<std::shared_ptr<DabService> >& services); @@ -59,7 +60,7 @@ void printComponents(std::vector<DabComponent*>& components); void printSubchannels(std::vector<dabSubchannel*>& subchannels); /* Print information about the whole ensemble */ -void printEnsemble(const boost::shared_ptr<dabEnsemble> ensemble); +void printEnsemble(const std::shared_ptr<dabEnsemble> ensemble); /* Print detailed component information */ void printComponent(DabComponent* component); |