vdj_pipe
pipeline for processing DNA sequence data
queable_ofstream_types.hpp
Go to the documentation of this file.
1 
7 #ifndef VDJ_PIPE_DETAIL_QUEABLE_OFSTREAM_TYPES_HPP_
8 #define VDJ_PIPE_DETAIL_QUEABLE_OFSTREAM_TYPES_HPP_
9 #include <string>
10 #include <vector>
11 #include "boost/ref.hpp"
13 
14 namespace vdj_pipe{ namespace detail{
15 
19  typedef value_variant value_type;
20  typedef std::vector<value_type> val_vector;
21 
22  typedef std::vector<boost::reference_wrapper<value_type const> >
23  val_ref_vector;
24 
25  typedef std::vector<std::string> path_template;
26 };
27 
28 }//namespace detail
29 }//namespace vdj_pipe
30 #endif /* VDJ_PIPE_DETAIL_QUEABLE_OFSTREAM_TYPES_HPP_ */
Main namespace of vdj_pipe library.
Definition: sequence_file.hpp:14
Definition: queable_ofstream_types.hpp:18