diff options
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r-- | src/ConfigParser.h | 10 |
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 |