From 863d9fe32fbff286d4c359d6a5c29184ed511866 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 21 Dec 2015 22:53:23 +0100 Subject: Replace some boost shared_ptr by std ones --- src/utils.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/utils.h') 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 +#include #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 >& outputs); +void printOutputs(std::vector >& outputs); void printServices(const std::vector >& services); @@ -59,7 +60,7 @@ void printComponents(std::vector& components); void printSubchannels(std::vector& subchannels); /* Print information about the whole ensemble */ -void printEnsemble(const boost::shared_ptr ensemble); +void printEnsemble(const std::shared_ptr ensemble); /* Print detailed component information */ void printComponent(DabComponent* component); -- cgit v1.2.3