diff options
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); |