summaryrefslogtreecommitdiffstats
path: root/src/ConfigParser.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-21 22:53:23 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-21 22:53:23 +0100
commit863d9fe32fbff286d4c359d6a5c29184ed511866 (patch)
treefdcb2c34837848db7904eb7f73890da3ff18f6fb /src/ConfigParser.h
parent3f179d73b72c2fcb496e5bada79a782f5d722ffe (diff)
downloaddabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.gz
dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.bz2
dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.zip
Replace some boost shared_ptr by std ones
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r--src/ConfigParser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ConfigParser.h b/src/ConfigParser.h
index 1eec783..0b10c04 100644
--- a/src/ConfigParser.h
+++ b/src/ConfigParser.h
@@ -36,17 +36,17 @@
#include "MuxElements.h"
#include "DabMux.h"
#include <boost/property_tree/ptree.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
void parse_ptree(boost::property_tree::ptree& pt,
- boost::shared_ptr<dabEnsemble> ensemble,
- boost::shared_ptr<BaseRemoteController> rc);
+ std::shared_ptr<dabEnsemble> ensemble,
+ std::shared_ptr<BaseRemoteController> rc);
void setup_subchannel_from_ptree(dabSubchannel* subchan,
boost::property_tree::ptree &pt,
- boost::shared_ptr<dabEnsemble> ensemble,
+ std::shared_ptr<dabEnsemble> ensemble,
std::string subchanuid,
- boost::shared_ptr<BaseRemoteController> rc);
+ std::shared_ptr<BaseRemoteController> rc);
#endif