Changeset 3996
- Timestamp:
- Oct 7, 2020, 7:03:15 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/VcfFile.h
r3823 r3996 27 27 #include <boost/noncopyable.hpp> 28 28 #include <boost/iostreams/filtering_stream.hpp> 29 #include <boost/smart_ptr/scoped_ptr.hpp>30 29 31 30 #include <fstream> 31 #include <memory> 32 32 #include <string> 33 33 … … 116 116 const VcfHeader& header(void) const; 117 117 private: 118 boost::scoped_ptr<VcfHeader> header_;118 std::unique_ptr<VcfHeader> header_; 119 119 boost::iostreams::filtering_istream fis_; 120 120 // store here for easy garbage collection 121 boost::scoped_ptr<std::ifstream> file_stream_;121 std::unique_ptr<std::ifstream> file_stream_; 122 122 std::string name_; 123 123 friend class VcfIterator;
Note: See TracChangeset
for help on using the changeset viewer.