aboutsummaryrefslogtreecommitdiffstats
path: root/src/EtiReader.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-08-01 17:18:24 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-08-01 17:18:24 +0200
commit31edd6a85f52c855d54594dc9f8ceda694d3ebea (patch)
tree60ad2c84d28a495082e0b083e072a934bc142634 /src/EtiReader.h
parent1c25545bb03ea074b5871be3234bf0d1be20a6a3 (diff)
downloaddabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.gz
dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.bz2
dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.zip
Switch to C++11, remove boost::shared_ptr
Diffstat (limited to 'src/EtiReader.h')
-rw-r--r--src/EtiReader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/EtiReader.h b/src/EtiReader.h
index 84ad9b4..a8fc8f0 100644
--- a/src/EtiReader.h
+++ b/src/EtiReader.h
@@ -39,9 +39,9 @@
#include "TimestampDecoder.h"
#include <vector>
+#include <memory>
#include <stdint.h>
#include <sys/types.h>
-#include <boost/shared_ptr.hpp>
class EtiReader
@@ -58,7 +58,7 @@ public:
FicSource* getFic();
unsigned getMode();
unsigned getFp();
- const std::vector<boost::shared_ptr<SubchannelSource> >& getSubchannels();
+ const std::vector<std::shared_ptr<SubchannelSource> >& getSubchannels();
int process(const Buffer* dataIn);
void calculateTimestamp(struct frame_timestamp& ts)
@@ -84,7 +84,7 @@ protected:
eti_EOF eti_eof;
eti_TIST eti_tist;
FicSource* myFicSource;
- std::vector<boost::shared_ptr<SubchannelSource> > mySources;
+ std::vector<std::shared_ptr<SubchannelSource> > mySources;
TimestampDecoder myTimestampDecoder;
private: