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 
20  typedef std::vector<value_type> val_vector;
21 
22  typedef std::vector<boost::reference_wrapper<value_type const> >
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_ */
std::vector< std::string > path_template
Definition: queable_ofstream_types.hpp:25
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11
std::vector< value_type > val_vector
Definition: queable_ofstream_types.hpp:20
Definition: queable_ofstream_types.hpp:18
value_variant value_type
Definition: queable_ofstream_types.hpp:19
boost::variant< Blank, bool, long, double, std::string, sequence_interval, Qual_record::quality > value_variant
Definition: value_variant.hpp:50
std::vector< boost::reference_wrapper< value_type const > > val_ref_vector
Definition: queable_ofstream_types.hpp:23