diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-04-17 20:19:56 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-04-17 20:19:56 +0200 |
commit | 5f9e7bc673025ffdc953d254be0d0c65c70ee908 (patch) | |
tree | 05c023814851e2135e22a98c676115d67334f664 /src/utils.h | |
parent | dd428769ba5587e913cb2d768e2bca4b70f98c5d (diff) | |
download | dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.gz dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.bz2 dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.zip |
Remove using directives from .h files
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 2a91dbc..ee2340f 100644 --- a/src/utils.h +++ b/src/utils.h @@ -49,13 +49,13 @@ void printUsageConfigfile(char *name, FILE* out = stderr); /* The following four utility functions display a * description of all outputs, services, components * resp. subchannels*/ -void printOutputs(vector<dabOutput*>& outputs); +void printOutputs(std::vector<dabOutput*>& outputs); -void printServices(vector<DabService*>& services); +void printServices(std::vector<DabService*>& services); -void printComponents(vector<DabComponent*>& components); +void printComponents(std::vector<DabComponent*>& components); -void printSubchannels(vector<dabSubchannel*>& subchannels); +void printSubchannels(std::vector<dabSubchannel*>& subchannels); /* Print information about the whole ensemble */ void printEnsemble(dabEnsemble* ensemble); |