blockfactory  0.8
A framework for wrapping algorithms for dataflow programming
ConvertStdVector.h File Reference
#include <string>
#include <vector>
Include dependency graph for ConvertStdVector.h:

Go to the source code of this file.

Namespaces

 blockfactory
 
 blockfactory::core
 

Functions

template<typename Tin , typename Tout >
void blockfactory::core::convertStdVector (const std::vector< Tin > &input, std::vector< Tout > &output)
 
template void blockfactory::core::convertStdVector< std::string, std::string > (const std::vector< std::string > &input, std::vector< std::string > &output)
 
template<>
void blockfactory::core::convertStdVector< std::string, int > (const std::vector< std::string > &input, std::vector< int > &output)
 
template<>
void blockfactory::core::convertStdVector< std::string, bool > (const std::vector< std::string > &input, std::vector< bool > &output)
 
template<>
void blockfactory::core::convertStdVector< std::string, double > (const std::vector< std::string > &input, std::vector< double > &output)
 
template<>
void blockfactory::core::convertStdVector< int, std::string > (const std::vector< int > &input, std::vector< std::string > &output)
 
template<>
void blockfactory::core::convertStdVector< bool, std::string > (const std::vector< bool > &input, std::vector< std::string > &output)
 
template<>
void blockfactory::core::convertStdVector< double, std::string > (const std::vector< double > &input, std::vector< std::string > &output)
 

Function Documentation

template void blockfactory::core::convertStdVector< std::string, std::string > ( const std::vector< std::string > &  input,
std::vector< std::string > &  output 
)